Hi I am working on a web application which uses Log4j for logging, i added Axis2.0 to this web application and added following lines to control logging
<category name="log4j.logger.org.apache.axis"> <priority value="WARN"> </priority> <appender-ref ref= "STDOUT" /> </category> <category name="log4j.logger.org.apache.axis2"> <priority value="WARN"> </priority> <appender-ref ref= "STDOUT" /> </category> But still i am getting a lot of output in my log file like below, how do i stop this? 2008-08-05 10:51:25,276 DEBUG [Thread-1] i18n.ProjectResourceBundle (ProjectResourceBundle.java:70) - org.apache.axis2.i18n.resource::handleGetObject(addingnewmodule) 2008-08-05 10:51:25,276 DEBUG [Thread-1] deployment.DeploymentEngine (DeploymentEngine.java:465) - Adding new module 2008-08-05 10:51:25,697 DEBUG [Thread-1] engine.Phase (Phase.java:96) - Handler AddressingOutHandler added to Phase MessageOut 2008-08-05 10:51:25,697 DEBUG [Thread-1] engine.Phase (Phase.java:96) - Handler AddressingOutHandler added to Phase MessageOut 2008-08-05 10:51:25,775 DEBUG [Thread-1] description.AxisService (AxisService.java:716) - mapActionToOperation: Mapping Action to Operation: action: getVersionRequest; operation: [EMAIL PROTECTED] 2008-08-05 10:51:25,775 DEBUG [Thread-1] description.AxisService (AxisService.java:716) - mapActionToOperation: Mapping Action to Operation: action: getVersionResponse; operation: [EMAIL PROTECTED] 2008-08-05 10:51:25,759 INFO [Thread-1] util.Utils (Utils.java:191) - Created temporary file : C:\server\Tomcat5.5.26\work\Catalina\localhost\testapp\axis218320version-1.3.aar 2008-08-05 10:51:25,759 DEBUG [Thread-1] util.StAXUtils (StAXUtils.java:191) - XMLStreamReader is com.ctc.wstx.sr.ValidatingStreamReader Ash
