解决springboot2.x集成log4j2调试⽇志⽆法关闭的问题springboot2.x集成log4j2时,始终⽆法关闭log4j2⾃⾝的⽇志输出
已经做了如下配置:
在l的配置⽂件中,配置configuration的status属性为OFF;
确认系统所有地⽅⽆配置log4j2.debug;
如上配置都⽆法解决问题,只能从源码着⼿⼀探究竟。
从log4j2-api包中,到StatusLogger,其设置⽇志输出level的代码如下:
idea debugprivate StatusLogger(final String name,final MessageFactory messageFactory) {
super(name, messageFactory);
final String dateFormat = StringProperty(STATUS_DATE_FORMAT, Strings.EMPTY);
final boolean showDateTime = !Strings.isEmpty(dateFormat);
this.logger =new SimpleLogger("StatusLogger", Level.ERROR,false,true, showDateTime,false,
dateFormat, messageFactory, PROPS, );
this.listenersLevel = Level(DEFAULT_STATUS_LEVEL, Level.WARN).intLevel();
// LOG4J2-1813 if system property "log4j2.debug" is defined, print all status logging
if (isDebugPropertyEnabled()) {
logger.setLevel(Level.TRACE);
}
}
从上述代码可以看出,level的级别默认是设置为error,仅当有设置log4j2.debug时,才会输出trace⽇志。
那log4j2.debug属性在哪设置的呢?带着这个问题,寻到了SystemPropertiesPropertySource。这个类在装载属性到Environment前有做⾃定义处理:
private static final String PREFIX ="log4j2.";
@Override
public CharSequence getNormalForm(final Iterable<?extends CharSequence> tokens) {
return PREFIX + Util.joinAsCamelCase(tokens);
}
如上述代码所⽰,该操作会解释所有系统属性,然后按解析后的token⾃⾏加上log4j2.的前缀。在这⾥导致了⽇志系统认为需要debug,进⽽输出trace⽇志的问题。那系统属性上的debug哪来的呢?
⾸先,本地进程是以run模式启动的,环境变量也没有⾃⾏设置debug参数,为何会有jvm启动参数中会有 “-Ddebug” 的存在?
查看运⾏进程的Configurations配置如下所⽰:
springboot有⼀个⾃定义配置,默认是勾上了enable debug output。把这个去掉,再次运⾏发现-Ddebug没有了,⽇志也正常了。
不过即便如此,log4j2是不是有点智障,这么拼接系统变量的搞法很容易混淆
springboot整合log4j2遇到的⼀个坑
项⽬中使⽤springboot,需要⽤log4j2做⽇志框架
问题
项⽬启动报错:Could not initialize Log4J2 logging from l
是⼀个⽆法初始化Log4J2配置的问题,项⽬中采⽤的yml的配置⽂件。
前置操作
⾸先引⼊依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
去掉默认的logback配置:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions><!-- 去掉默认配置 -->
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
添加配置⽂件:
配置fig
以上是整合操作的必要配置,配置完成启动报错。
问题排查
根据异常信息描述,到源码中初始化的代码:Log4J2LoggingSystem.loadConfiguration
继续跟进:
发现是⼀个抽象⽅法,idea中使⽤ctrl+alt+B查实现类:
因为使⽤的是yml,所以实现类应该是YamlConfig这个,到具体实现:
通过debug发现isActive是false,所以返回null。在此类中到isActive的含义:
这是关键的逻辑,原来回去检查是否存在上⾯⼏个依赖的类,调试返现没有YAMLFactory这个类,可以看出这个类是jackson包中的,看来是少依赖了包。解决
引⼊jackson-dataformat-yaml依赖:
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</dependency>
启动正常,问题解决。
以上为个⼈经验,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。