Skip to content

Instantly share code, notes, and snippets.

@etissieres
Last active August 29, 2015 13:56
Show Gist options
  • Save etissieres/8887044 to your computer and use it in GitHub Desktop.
Save etissieres/8887044 to your computer and use it in GitHub Desktop.
Logback & SLF4J
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi> <!-- needs org.fusesource.jansi:jansi -->
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<Pattern>%date{HH:mm:ss} %highlight(%-5level) [%thread] %cyan(%logger{15}) - %msg%n</Pattern>
</encoder>
</appender>
<root>
<level value="debug" />
<appender-ref ref="STDOUT" />
</root>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment