replace log4j2 with logback

This commit is contained in:
jbb01
2024-04-01 18:04:25 +02:00
parent bfae7c9802
commit e8ace4fea5
16 changed files with 46 additions and 40 deletions

View File

@@ -0,0 +1,11 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} %highlight(%-5level) [%15.15t] %cyan(%c{1}) : %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT"/>
</root>
</configuration>