log4j不打印日志

代码的日志内容不打印到日志文件

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-log4j12包

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.7.21</version>
    </dependency>

记录一下问题

猜你喜欢

转载自blog.csdn.net/xxaann/article/details/85244945