Switching to logback

This commit is contained in:
Urban Modig
2025-08-17 20:48:57 +02:00
parent 1d67522ee9
commit 15757da2cf
3 changed files with 14 additions and 4 deletions

View File

@ -27,9 +27,9 @@
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.slf4j</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>slf4j-simple</artifactId> <artifactId>logback-classic</artifactId>
<version>2.0.13</version> <version>1.5.18</version>
</dependency> </dependency>
</dependencies> </dependencies>

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} [%thread] %-5level %logger{36}.%M - %msg%n</pattern>
</encoder>
</appender>
<root level="DEBUG">
<appender-ref ref="STDOUT" />
</root>
</configuration>

View File

@ -1 +0,0 @@
org.slf4j.simpleLogger.defaultLogLevel=debug