当我运行我的jar文件时,出现以下错误:
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.
问题是我没有使用slf4j,我正在使用log4j2。它由依赖项使用。 Maven正确地包含org.slf4j:slf4j-api作为我正在使用的库的传递依赖。
如何摆脱此警告?我甚至不想记录这种依赖的问题。
答案 0 :(得分:0)
我用这种依赖来解决它:
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.11.0</version>
</dependency>
这将添加log4j2作为slf4j api的实现。如果需要,我甚至可以显示依赖项的日志事件。