Skip to content

Commit

Permalink
Update logback pattern and remove status listener
Browse files Browse the repository at this point in the history
Simplified the logging pattern for console output to improve readability. Removed the unused status listener to clean up the configuration file.
  • Loading branch information
NonSwag committed Oct 2, 2024
1 parent 4096bbf commit 9049dd5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<configuration>
<statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" />
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- Set the level to DEBUG to enable debug logs -->
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
</filter>
<encoder>
<pattern>%d{HH:mm:ss.SSS} |-%level in %logger - %msg%n</pattern>
<pattern>[%d{HH:mm:ss}] [%level] %msg%n</pattern>
</encoder>
</appender>

Expand Down

0 comments on commit 9049dd5

Please sign in to comment.