提问者:小点点

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


我有一个使用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配置文件中找到了这个:

<cxf:bus>
    <cxf:features> 
        <cxf:logging /> 
    </cxf:features> 
</cxf:bus> 

但是在我已经从配置文件中注释了这些行之后,日志记录仍然会出现。

请帮帮忙谢谢


共1个答案

匿名用户

由于应用程序使用log4j,因此将“org. apache.cxf”记录器级别转换为ERROR。将此行添加到log4j.properties:

log4j.logger.org.apache.cxf=ERROR