Last active
December 31, 2015 07:59
-
-
Save tonfever/7957874 to your computer and use it in GitHub Desktop.
Simple log4j.properties. Console, and Trace level (the Finest one).
This file contains 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
log4j.appender.stdout=org.apache.log4j.ConsoleAppender | |
log4j.appender.stdout.Target=System.out | |
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout | |
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n | |
log4j.rootLogger=TRACE, stdout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment