ERROR StatusLogger No log4j2 configuration file found. Using default configuration: xxxxx

由于spring boot项目中使用的是log4j.yml的形式打印的日志,但是配置了log4j2的依赖之后没有给我打印日志就爆出了一个错误,如下:
ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console. Set system property 'log4j2.debug' to show Log4j2 internal initialization logging.

我对比了下我的依赖发现有一个模块能够打印日志,唯独这一个模块中出现了上面的错误,所

以我找了一下依赖发现log4j2使用yml的时候需要

com.fasterxml.jackson.dataformat:jackson-dataformat-yaml这个包做支撑,
在spring-boot-starter-web依赖中又恰巧有

com.fasterxml.jackson.dataformat的相关依赖所以我猜想加入

com.fasterxml.jackson.dataformat一些引用就可以了

* 解决办法: *

1).如果没有引入spring-boot-starter-web依赖:


1-1)使用log4j2.xml 替代 在项目的src/main/resources中加入log4j2.xml文件并修改application.yml中的logging.config: classpath:log4j2.xml



1-2)加入依赖 com.fasterxml.jackson.datatype:jackson-datatype-jdk8就可以接着使用log4j2.yml了

2).引入spring-boot-starter-web依赖:

引入org.springframework.boot:spring-boot-starter-web依赖就可以

你可能感兴趣的:(ERROR StatusLogger No log4j2 configuration file found. Using default configuration: xxxxx)