SLF4J: Failed to load class "org
2020-04-13 本文已影响0人
煗NUAN
报错内容
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.
image-20200413211555919.png
修改方式
- 添加依赖
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.20</version>
<!--<scope>compile</scope>-->
</dependency>