Skip to content

Instantly share code, notes, and snippets.

@seahrh
Last active January 15, 2018 08:15
Show Gist options
  • Save seahrh/f1a409d208782a5dedd2b06171c907a5 to your computer and use it in GitHub Desktop.
Save seahrh/f1a409d208782a5dedd2b06171c907a5 to your computer and use it in GitHub Desktop.
Simple logback.xml
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment