java – 如何关闭额外的日志记录?

前端之家收集整理的这篇文章主要介绍了java – 如何关闭额外的日志记录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个使用Spring和CXF的Java服务.代码来自以前的开发人员,我正在提供维护,但我在日志中看到了这一点

 --------------------------------------
 Apr 16,2013 1:44:11 PM org.apache.cxf.interceptor.AbstractLoggingInterceptor log
 INFO: Inbound Message
 ----------------------------
 ID: 33
 Address: /MyApplication/endpoint
 Encoding: UTF-8
 Http-Method: POST
 Content-Type: application/x-www-form-urlencoded
 Headers: {content-type=[application/x-www-form-urlencoded],connection=[close],host=     [localhost:8080],Content-Length=[11504],user-agent=[Apache-HttpClient/4.2.3 (java 1.5)],Content-Type=[application/x-www-form-urlencoded]}
 Payload: {
"events" :
[ { event },{ event },... ]
 }

我们有太多事件,日志变得无法管理.有没有办法可以关闭这个日志记录?这些日志调用不是从应用程序内部创建的,它们是由某种我无法找到的拦截器创建的.我确实在cxf-context.xml配置文件中找到了这个:

但是,在我已经从配置文件中注释掉这些行之后,日志仍会出现.

请帮忙.谢谢

最佳答案
由于应用程序使用log4j,因此将’org.apache.cxf’记录器级别转为ERROR.将此行添加到log4j.properties:

log4j.logger.org.apache.cxf=ERROR
原文链接:https://www.f2er.com/spring/431664.html

猜你在找的Spring相关文章