概述
log4j2关闭debug日志
最近项目引进入一个jar包,启动之之后debug日志就停不下来了,为了关闭这个日志花了半个下午。总结以下处理方式,以供大家参考:
1.如果引入了logback的jar包
排除引用(我的项目里没有引用)
<exclusions> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> </exclusion> </exclusions>
2.调整log4j2的日志打印级别
log4j2.xml(对于我的项目没有起作用)
<configuration status="info" monitorInterval="600" >
3.指定加载文件web.xml
添加指定日志文件 (我的项目无效)
<context-param> <param-name>log4jConfigLocation</param-name> <param-value>WEB-INF/classes/log4j2.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener>
4.添加log4j.properties
对于我的项目有效
log4j.rootLogger=info,stdout
备注:因为我的项目里由于第三方jar包引入了slf4j-log4j12和log4j2冲突,所以exclude掉slf4j-log4j12 jar包就是可以的
Log4J和slf4j的debug日志问题
很多人知道
在使用slf4j的过程中通常会引入两个jar包
大概如下:
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.21</version> </dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>1.7.21</version> </dependency>
当使用最终的日志实现
如Log4j时,又会引入log4j相关的jar包,如下:
<!-- https://mvnrepository.com/artifact/log4j/log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency>
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>1.7.21</version> </dependency>
这样就可以在Java应用程序(Java Web服务和Java程序)中,输出由slf4j编写的日志。
但在使用过程中发现,在执行测试用例(加载Spring或未加载Spring)的时候,不管怎么配置log4j.properties文件,都会出现部分debug日志输出不了的情况,具体就是自己写的那部分的debug日志不会输出,而如Spring或MyBatis等框架的debug日志就可以输出。
后面根据slf4j的警告日志,说是有多个日志实现,从而不确定具体选哪一个具体日志实现。经过进一步的调试,删除slf4j-simple的依赖后,所有的debug日志都可以如期的输出。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持靠谱客。
最后
以上就是疯狂含羞草为你收集整理的使用log4j2关闭debug日志的全部内容,希望文章能够帮你解决使用log4j2关闭debug日志所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复