Why does my repo produce errant output from ch.qos.logback ? #10926
-
I'm getting weird logging prior to my program's execution. What have I set up wrong? I've tried facilitating this explanation with pertinent screenshots. I've collapsed them to try and keep this readabale as well. SummaryMy CLI produces two log outputs, one which I can change by setting the log level in
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
fwiw, following similar thread discussions and manually setting the <configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<pattern>%cyan(%d{HH:mm:ss.SSS}) %gray([%thread]) %highlight(%-5level) %magenta(%logger{36}) - %msg%n</pattern>
</encoder>
</appender>
<root level="ERROR">
<appender-ref ref="STDOUT" />
</root>
<logger name="ch.qos.logback" level="OFF" additivity="false" />
</configuration> |
Beta Was this translation helpful? Give feedback.
-
I think the problem is those WARN entries in the logback status log (duplicate logback.xml). If you fix those, it should not print the INFO status log either. |
Beta Was this translation helpful? Give feedback.
-
I had the same issue, solved it by adding the following line to my logback.xml: <statusListener class="ch.qos.logback.core.status.NopStatusListener" /> Got the answer from this stackoverflow post. |
Beta Was this translation helpful? Give feedback.
I had the same issue, solved it by adding the following line to my logback.xml:
Got the answer from this stackoverflow post.