You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
654 B

3 years ago
  1. <configuration>
  2. <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
  3. <!-- On Windows machines setting withJansi to true enables ANSI
  4. color code interpretation by the Jansi library. This requires
  5. org.fusesource.jansi:jansi:1.8 on the class path. Note that
  6. Unix-based operating systems such as Linux and Mac OS X
  7. support ANSI color codes by default. -->
  8. <withJansi>true</withJansi>
  9. <encoder>
  10. <pattern>[%thread] %highlight(%-5level) %cyan(%logger{15}) - %msg %n</pattern>
  11. </encoder>
  12. </appender>
  13. <root level="INFO">
  14. <appender-ref ref="STDOUT" />
  15. </root>
  16. </configuration>