You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by "Peake, Chris" <Ch...@ca.com> on 2002/12/20 20:29:55 UTC

how to stop logging (completely)

How do you stop logging 'any' messages completely with Axis?
I've tried several methods with the log4j.properties file.
It has been put in the web-inf\classes dir.


Basically, if the Web Service thows an exception, the Call.java 'invoke' method in line 1853 continues to log the exception via the statement:
        } catch (Exception e) {
            entLog.info(Messages.getMessage("toAxisFault00"), e);
            throw AxisFault.makeFault(e);
        }
These 'info' errors are still being written to 'stderr'.
We don't want 'any' reporting at this time.
No 'info' messages even.

Is this configurable?
Changeable?
etc?

Thanks,
 chris