Re: More unwanted HttpClient logging

2004-02-02 Thread Sam Berlin
value that works counter to "org.apache.commons.logging.impl.NoOpLog"? BradO -Original Message- From: Sam Berlin [mailto:[EMAIL PROTECTED] Sent: Monday, February 02, 2004 12:11 PM To: Commons HttpClient Project Subject: Re: More unwanted HttpClient logging Use:

RE: More unwanted HttpClient logging

2004-02-02 Thread Brad O'Hearne
y 02, 2004 12:11 PM > To: Commons HttpClient Project > Subject: Re: More unwanted HttpClient logging > > > Use: > System.setProperty("org.apache.commons.logging.Log", > "org.apache.commons.logging.impl.NoOpLog"); > >

Re: More unwanted HttpClient logging

2004-02-02 Thread Sam Berlin
Use: System.setProperty("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.NoOpLog"); Technically it's better to set the property before starting Java (using - Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog) when running

More unwanted HttpClient logging

2004-02-02 Thread Brad O'Hearne
Got another one of these unwanted log messages spewing to System.out: Feb 2, 2004 11:32:48 AM org.apache.commons.httpclient.HttpMethodBase processRequest INFO: Recoverable exception caught when processing request Except this time, prior to this executing, I set the log level at WARN. Anyone know