Re[2]: HttpClient is logging on INFO-level - how to change to ERROR?

2007-01-06 Thread Christian Kruggel
Hey Christian, CH Which implementation do you use for the actual logging? To be honest: I do not have any idea. Since I did not specify a particular implementation I do assume that SimpleLog is used. But if so, these both lines should affect logging:

Re: HttpClient is logging on INFO-level - how to change to ERROR?

2007-01-06 Thread Dennis Lundberg
Christian Kruggel wrote: Hey Christian, CH Which implementation do you use for the actual logging? To be honest: I do not have any idea. Since I did not specify a particular implementation I do assume that SimpleLog is used. But if so, these both lines should affect logging:

Re[2]: HttpClient is logging on INFO-level - how to change to ERROR?

2007-01-06 Thread Christian Kruggel
Hello Dennis! DL This looks like JDK 1.4 logging to me. In deed, it was. DL If you want to use SimpleLog add this system property: DLorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog Marvellous, this property did the trick. Thanks a lot! Christian

I'm feeling under the weather. I should be back Monday.

2007-01-06 Thread Mike Wamboldt
I will be out of the office starting 01/04/2007 and will not return until 01/08/2007. I will respond to your message when I return.

Re: Commons Logging - FileAppender Issue

2007-01-06 Thread Simon Kitching
On Fri, 2007-01-05 at 10:22 +0100, DECAFFMEYER MATHIEU wrote: Hi, I'm using Log4j to manage log, I want to convert this by Commons Logging by converting just this line : private static Logger sLogger = Logger.getLogger(LoggingManager.class); by this one : private static Log sLogger