From looking at the commons logging docs <http://jakarta.apache.org/commons/logging/userguide.html> it seems that this could also happen if you are using a 1.4 JRE. If so, you can either configure logging using java.util.logging or set the following system property to default commons logging to the simple log:

System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.SimpleLog");

Mike

christopher justin wrote:

really strange.. the only jars related to HttpClient that are in my path are
commons-httpclient-2.0-rc1.jar and commons-logging.jar . And I have now I now made sure I set System.setProperty("org.apache.commons.logging.simplelog.defaultlog","fatal"); in my main method before any classes are even instantiated. It still has not supressed warnings, info, etc.



From: Michael Becke <[EMAIL PROTECTED]>
Reply-To: "Commons HttpClient Project" <[EMAIL PROTECTED]>
To: Commons HttpClient Project <[EMAIL PROTECTED]>
Subject: Re: can't seem to supress logging
Date: Wed, 03 Dec 2003 14:38:50 -0500


Hi Chris,

There are two possibilities that I can think of:

1) The Log4j jar is on your classpath. When Log4j is detected it is used as the default logger and it controls the default log levels.

2) org.apache.commons.logging.simplelog.defaultlog is not being set soon enough. This property must be set before commons-logging is used. It should be set prior to any calls to LogFactory.getLog().

Mike

christopher justin wrote:

hi all,
this has been bugging me for over 24 hours now, so i figured i would ask your help on this probably really simple answer. I have set the following:


System.setProperty("org.apache.commons.logging.simplelog.defaultlog","fatal");



But i still get WARNING and INFO message - I cannot seem to figure out how to reduce the logging to FATAL or error. The docs at http://jakarta.apache.org/commons/httpclient/logging.html speak as if its as easy as setting the appropriate system property, so maybe i am setting the wrong property, but the one above says it is the how to set the default log level for all classes. The class I set this in is the one who is wriitng warning, info and error messages.

Can some one please tell me how to set the logging level appropriatly?

Thanks in advance.

_________________________________________________________________
Browse styles for all ages, from the latest looks to cozy weekend wear at MSN Shopping. And check out the beauty products! http://shopping.msn.com



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



_________________________________________________________________
Take advantage of our best MSN Dial-up offer of the year — six months @$9.95/month. Sign up now! http://join.msn.com/?page=dept/dialup



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to