Create logback.xml

This commit is contained in:
tesobe-daniel 2024-01-08 18:04:25 +01:00 committed by GitHub
parent f385a8a71e
commit a9ef4b1e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/WEB-INF/classes/logback.xml vendored Normal file
View File

@ -0,0 +1,12 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss} %t %c{0} [%p] %m%n</pattern>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>
</configuration>