forked from NLeSC/Constellation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog4j.properties
27 lines (20 loc) · 996 Bytes
/
log4j.properties
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
#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, CONSOLE
#and possibly some other things...
#log4j.logger.ibis.constellation=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