I am accessing a webservice deployed in some other remote machine which is implemented using axis2. I have created a webesrvice using cxf which in turn invokes the other wesbervice which i mentioned above. When i deploy my war file on tomcat i am getting all the soap messages on console and it getting overridden with all the logs.I would like to disable the DEBUG statements.
Is there any way to change ? should i need to modify something in the remote server where the axis webservice is running( the one my cxf webservice is using). i am getting the debug statements as below.
pache.axis.message.MessageElement:trustLevelMap
2011-07-22 12:56:56 DeserializationContext [DEBUG] Exit: DeserializationContext:
:endElement()
2011-07-22 12:56:56 DeserializationContext [DEBUG] Enter: DeserializationContext
::endElement(, trustLevelMap)
2011-07-22 12:56:56 ProjectResourceBundle [DEBUG] org.apache.axis.i18n.resource:
:handleGetObject(popHandler00)
2011-07-22 12:56:56 DeserializationContext [DEBUG] Popping handler org.apache.ax
is.message.SOAPHandler@6961fdd9
2011-07-22 12:56:56 DeserializationContext [DEBUG] Popped element stack to org.a
pache.axis.message.MessageElement:navigation
2011-07-22 12:56:56 DeserializationContext [DEBUG] Exit: DeserializationContext:
:endElement()
Apart from this i want to change my cxf log level from debug to info also.Please provide me some pointers.