Skip to content

Commit 2f5b974

Browse files
committed
Suppress logback status messages to fix stdout pollution
Logback 1.5.x prints internal status messages to stdout by default during initialization. These messages were mixing with application output, breaking the integration tests that parse stdout.
1 parent dd03591 commit 2f5b974

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/main/resources/logback.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<configuration>
2+
<statusListener class="ch.qos.logback.core.status.NopStatusListener"/>
23
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
34
<target>System.err</target>
45
<encoder>

0 commit comments

Comments
 (0)