2006-05-29 13:32:12 +00:00
|
|
|
# Global logging configuration
|
2009-09-29 00:29:09 +00:00
|
|
|
log4j.rootLogger=DEBUG, stdout
|
2006-05-29 13:32:12 +00:00
|
|
|
|
2008-12-08 21:56:44 +00:00
|
|
|
log4j.logger.org.springframework.security=DEBUG
|
2006-05-29 13:32:12 +00:00
|
|
|
|
|
|
|
# Console output...
|
|
|
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
|
|
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
2008-12-08 21:56:44 +00:00
|
|
|
log4j.appender.stdout.layout.conversionPattern=[%p,%c{1}] %m%n
|
2006-05-29 13:32:12 +00:00
|
|
|
|
|
|
|
# Rolling log file output...
|
2008-12-08 21:56:44 +00:00
|
|
|
log4j.appender.fileout=org.apache.log4j.FileAppender
|
2007-10-16 13:52:01 +00:00
|
|
|
log4j.appender.fileout.File=spring-security-tutorial.log
|
2006-05-29 13:32:12 +00:00
|
|
|
log4j.appender.fileout.layout=org.apache.log4j.PatternLayout
|
|
|
|
log4j.appender.fileout.layout.conversionPattern=%d{ABSOLUTE} %5p %c{1},%t:%L - %m%n
|
2008-12-08 21:56:44 +00:00
|
|
|
log4j.appender.fileout.Append=false
|