其他分享
首页 > 其他分享> > SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-o

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-o

作者:互联网

  1. 项目中配置了新的日志框架log4j2之后启动项目报错并且没有生成日志文件
    在这里插入图片描述
  2. 解决办法
<dependency>
		    <groupId>org.apache.logging.log4j</groupId>
		    <artifactId>log4j-slf4j-impl</artifactId>
		</dependency>

在这里插入图片描述
3. 在这里插入图片描述

标签:load,StaticLoggerBinder,slf4j,SLF4J,org,日志,log4j,impl
来源: https://blog.csdn.net/LI_AINY/article/details/98188920