mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 09:12:14 +00:00
20 lines
831 B
Properties
Executable File
20 lines
831 B
Properties
Executable File
# Global logging configuration
|
|
log4j.rootLogger=DEBUG, stdout
|
|
|
|
log4j.logger.org.springframework.security=DEBUG, stdout
|
|
log4j.logger.org.apache.directory=INFO, stdout
|
|
|
|
# Console output...
|
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
|
log4j.appender.stdout.layout.conversionPattern=[%p,%c{1},%L] - %m%n
|
|
|
|
# Rolling log file output...
|
|
#log4j.appender.fileout=org.apache.log4j.RollingFileAppender
|
|
#log4j.appender.fileout.File=spring-security-tutorial.log
|
|
#log4j.appender.fileout.File=${webapp.root}/WEB-INF/log4j.log
|
|
#log4j.appender.fileout.MaxFileSize=1024KB
|
|
#log4j.appender.fileout.MaxBackupIndex=1
|
|
#log4j.appender.fileout.layout=org.apache.log4j.PatternLayout
|
|
#log4j.appender.fileout.layout.conversionPattern=%d{ABSOLUTE} %5p %c{1},%t:%L - %m%n
|