Tom Jordahl wrote:
Axis logs very little by default. Do you have DEBUG or INFO logging turned on
in a commons-logging.properties file somewhere?
Axis2 is pretty verbose. My client junit logs are full of
615 INFO org.apache.axis2.deployment.AxisConfigBuilder - no custom
dispatching order found, continuing with the default dispaching order
which is completely meaningless and irrelevant for info level messages.
I had to crank back lots of routines to ERROR level to cut the noise down:
log4j.logger.org.apache.axis2.engine.Phase=ERROR
log4j.logger.org.apache.axis2.soap.impl.llom.builder=ERROR
log4j.logger.org.apache.axis2.soap.impl.llom.builder.StAXSOAPModelBuilder=ERROR
log4j.logger.org.apache.axis2.engine.AxisEngine=ERROR
log4j.logger.org.apache.axis2.transport.http.SimpleHTTPServer=ERROR
(pause)
yeah, setting AxisConfigBuilder to ERROR makes it quieter too.