forked from jmaassen/esalsa-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log4j.properties
42 lines (31 loc) · 1.59 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#JavaGAT default log4j property file
#Log4j is used throughout the JavaGAT 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 run_gat_app script tells log4j to use this configuration file by setting:
# -Dlog4j.configuration=file:$GAT_LOCATION/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.org.gridlab.gat=debug
#log4j.logger.org.gridlab.gat.engine.util=debug
#log4j.logger.org.gridlab.gat.resources.cpi.Wrapper=DEBUG
#log4j.logger.org.gridlab.gat.resources.cpi.local=DEBUG
#log4j.logger.org.gridlab.gat.io.cpi.globus.GridFTPFileAdaptor=DEBUG
#log4j.logger.org.globus=DEBUG
#log4j.logger.org.gridlab.gat.io.cpi.sftpTrilead=TRACE
#log4j.logger.org.gridlab.gat.engine=debug
#log4j.logger.org.gridlab.gat.io.cpi.sshtrilead=debug
#log4j.logger.nl.esciencecenter.esalsa.deploy=DEBUG
log4j.logger.eSalsa=INFO
#console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOLE.layout.ConversionPattern=%d{HH:mm:ss} %-5p [%t] %c - %m%n
#simple console appender
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