SLF4J: Defaulting to no-operation (NOP) logger implementation

问题描述

在使用Maven构建项目后,测试执行代码时,控制台报出以下信息:

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.

 

 

但是好像并不影响代码的执行,原因可能是log4j 和sl4j的版本不匹配,或是缺少jar包。

解决办法

然后只需要在项目的pom文件加入下面的依赖坐标即可:

<!--添加报错对应的依赖-->
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-nop</artifactId>
            <version>1.7.6</version>
        </dependency>

 

这里只是记录一下该问题以及解决方法,具体详细原因可以去网上查询,希望可以帮助到你!

 

微信关注

编程那点事儿

阅读剩余
THE END