1
0
Fork 0

Fix logging format and level
Build & Release / build-application (push) Successful in 2m9s Details
Build & Release / build-docker-image (push) Successful in 35s Details
Build & Release / deploy-to-production (push) Successful in 4s Details

This commit is contained in:
John Ahlroos 2025-02-15 20:14:43 +01:00
parent c451e5579a
commit c74e10e016
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<configuration>
<contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator">
<!-- reset all previous level configurations of all j.u.l. loggers -->
<resetJUL>true</resetJUL>
</contextListener>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi>
<encoder>
<pattern>%cyan(%d{HH:mm:ss.SSS}) %highlight(%-5level) %magenta(%logger{36}) - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="STDOUT" />
</root>
<logger name="com.devsoap.tincheck" level="INFO" />
<logger name="io.github.resilience4j.micronaut" level="OFF" />
<logger name="com.jayway.jsonpath" level="INFO" />
</configuration>