[Ejtools-cvs] CVS: applications/management/src/conf log4j.properties,1.1,1.2
Brought to you by:
letiemble
From: Laurent E. <let...@us...> - 2002-04-28 19:39:13
|
Update of /cvsroot/ejtools/applications/management/src/conf In directory usw-pr-cvs1:/tmp/cvs-serv15672/applications/management/src/conf Modified Files: log4j.properties Log Message: Return to the default Index: log4j.properties =================================================================== RCS file: /cvsroot/ejtools/applications/management/src/conf/log4j.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** log4j.properties 22 Apr 2002 17:39:59 -0000 1.1 --- log4j.properties 28 Apr 2002 13:02:44 -0000 1.2 *************** *** 1,18 **** ! # Set root logger level to DEBUG and its only appender to A1. ! log4j.rootLogger=debug, stdout, R ! log4j.appender.stdout=org.apache.log4j.ConsoleAppender ! log4j.appender.stdout.layout=org.apache.log4j.PatternLayout - # Pattern to output the caller's file name and line number. - log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n - log4j.appender.R=org.apache.log4j.RollingFileAppender - log4j.appender.R.File=debug.log ! log4j.appender.R.MaxFileSize=100KB ! # Keep one backup file ! log4j.appender.R.MaxBackupIndex=1 - log4j.appender.R.layout=org.apache.log4j.PatternLayout - log4j.appender.R.layout.ConversionPattern=%p %t %c - %m%n --- 1,20 ---- ! # Set root category priority to DEBUG and its only appender to A1. ! log4j.rootCategory=DEBUG, A1 ! # A1 is set to be a ConsoleAppender. ! ! log4j.appender.A1=org.apache.log4j.ConsoleAppender ! ! ! ! # A1 uses PatternLayout. ! ! log4j.appender.A1.layout=org.apache.log4j.PatternLayout ! ! log4j.appender.A1.layout.ConversionPattern=[%-5p] %c %x - %m%n ! ! |