Created
November 18, 2011 09:31
-
-
Save igm/1376003 to your computer and use it in GitHub Desktop.
Log4j properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Set root logger level to DEBUG and its only appender to A1. | |
| log4j.rootLogger=INFO, 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 | |
| #log4j.appender.A1.layout.ConversionPattern= %d{dd.MM.yyyy HH:MM:ss} %-5p %-30C{1}#%-30M %x - %m%n | |
| #log4j.logger.org.springframework.web=DEBUG | |
| log4j.logger.org.springframework.scheduling=TRACE | |
| log4j.logger.org.springframework=TRACE | |
| log4j.logger.org.quartz=TRACE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment