1
0

Initial commit

This commit is contained in:
2020-09-10 13:20:55 +02:00
commit 00fec096cb
19 changed files with 463 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi>
<encoder>
<pattern>%cyan(%d{YYYY-MM-dd HH:mm:ss.SSS}) [%thread] %highlight(%-5level) %green(%logger{36}) - %msg%n
</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="STDOUT"/>
</root>
<logger name="com.mitchellbosecke.pebble" level="INFO"/>
<logger name="org.eclipse.jetty" level="INFO"/>
</configuration>