我正在使用第三方代码:
if (logger.isDebugEnabled()) {
logger.debug("Message");
}
即使我使用标准运行配置,我也会在输出中收到这些消息,并且它只发生在我这个特定项目的实例上,所以我不确定我错过了什么。
我已经尝试删除了运行配置并重新启动它,但我一直在我的输出中获取它。
如何阻止此事?
[解决]
答案 0 :(得分:0)
我在另一个项目中发现了这个,将其复制过来,它的行为与我现在的预期相同:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level - %msg%n</pattern>
</encoder>
</appender>
<root level="info">
<appender-ref ref="CONSOLE"/>
</root>
</configuration>
这位于logback.xml
src>main>resources
感谢那些评论过的人!