Created
October 21, 2014 16:58
-
-
Save donigian/035938d2d9835fba7531 to your computer and use it in GitHub Desktop.
standard logback.xml
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
<configuration> | |
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | |
<encoder> | |
<pattern>%d{yyyy MM dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> | |
</encoder> | |
</appender> | |
<root level="warn"> | |
<appender-ref ref="STDOUT" /> | |
</root> | |
<logger name="xxx" level="debug" /> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment