forked from JungleComputing/ipl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog4j.properties
More file actions
36 lines (26 loc) · 1.29 KB
/
Copy pathlog4j.properties
File metadata and controls
36 lines (26 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#example log4j property file
#Log4j is used througout Ibis to enable the printing of debug and error
#messages. Log4j needs a configuration file to know what to print and
#where to print it to. This default file simply prints all errors to
#standard out.
#The ipl-run script tells log4j to use this configuration file by setting:
# -Dlog4j.configuration=file:$IPL_HOME/log4j.properties
#This file can also be added to the classpath instead.
#for more information, see the log4j website: http://logging.apache.org/log4j
#print warnings to console...
log4j.rootLogger=warn, SIMPLE_CONSOLE
#registry messages
#log4j.logger.ibis.ipl.registry=info
#and possibly some other things...
#log4j.logger.ibis.ipl.impl.Ibis=debug
#log4j.logger.ibis.ipl.server=debug
#log4j.logger.ibis.smartsockets=debug
#console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.target=System.err
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%d{HH:mm:ss} %-5p [%t] %c - %m%n
log4j.appender.SIMPLE_CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.SIMPLE_CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.SIMPLE_CONSOLE.layout.ConversionPattern=%d{HH:mm:ss} %-5p %m%n
log4j.appender.SIMPLE_CONSOLE.target=System.err