为了解决log4j问题,我们最近对现有POM文件进行了一些更改。
我们删除了
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>runtime</scope>
并补充道
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
在下面的父pom中是slf4j版本
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.17.0</version>
应用程序运行正常,但现在我们收到警告消息
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
有人能帮我提供一个解决方案吗?
1条答案
按热度按时间dddzy1tm1#
这是在slf4j网站上正式提到的解决方案
https://www.slf4j.org/codes.html#StaticLoggerBinder
我使用的是 logback 和 slf4j(在 gradle 中),所以第二段中提到的解决方案对我很有效。