Re: customizing debugging levels per httpclient instance

2004-04-29 Thread Jorrit Kronjee
Ortwin Glück wrote: Jorrit Kronjee wrote: I would like to see the wire of one of the threads, but suppress the other. Currently this is not possible. A simple workaround with Log4J is: * set your logging string to include the thread name * grep the log for the thread name you whish That w

Re: customizing debugging levels per httpclient instance

2004-04-28 Thread Michael Becke
FYI, I noticed the following BLOG on java.net that relates to this subject . abstraction is good, abstraction layers are even better... But seriously: no need for NDC support in HttpClient. My application provides it's own logging framework, so I can use the

RE: customizing debugging levels per httpclient instance

2004-04-27 Thread Roland Weber
Commons HttpClient Project <[EMAIL PROTECTED]> cc: Subject: RE: customizing debugging levels per httpclient instance Roland, As long as NDC is not supported by commons-logging HttpClient will not be able to take full advantage of it. We can still think about some sort

RE: customizing debugging levels per httpclient instance

2004-04-27 Thread Oleg Kalnichevski
gt; > > > > > > [EMAIL PROTECTED] > 27.04.2004 15:20 > Please respond to "Commons HttpClient Project" > > To: "Commons HttpClient Project" > <[EMAIL PROTECTED]> > cc: > Subject:RE: customizing debugging

RE: customizing debugging levels per httpclient instance

2004-04-27 Thread Roland Weber
oland [EMAIL PROTECTED] 27.04.2004 15:20 Please respond to "Commons HttpClient Project" To: "Commons HttpClient Project" <[EMAIL PROTECTED]> cc: Subject: RE: customizing debugging levels per httpclient instance Best solution

RE: customizing debugging levels per httpclient instance

2004-04-27 Thread Gareth_Davies
mons HttpClient Project" To: "Commons HttpClient Project" <[EMAIL PROTECTED]> cc: Subject:RE: customizing debugging levels per httpclient instance Jorrit, HttpClient relies on commons-logging toolkit to do all its logging. The commo

RE: customizing debugging levels per httpclient instance

2004-04-27 Thread Roland Weber
Project" To: "Commons HttpClient Project" <[EMAIL PROTECTED]> cc: Subject:RE: customizing debugging levels per httpclient instance Jorrit, HttpClient relies on commons-logging toolkit to do all its logging. The commons-logging itself is m

Re: customizing debugging levels per httpclient instance

2004-04-27 Thread Ortwin Glück
Jorrit Kronjee wrote: I would like to see the wire of one of the threads, but suppress the other. Currently this is not possible. A simple workaround with Log4J is: * set your logging string to include the thread name * grep the log for the thread name you whish HTH Ortwin Glück ---

RE: customizing debugging levels per httpclient instance

2004-04-26 Thread Kalnichevski, Oleg
feature, or file a feature request with the Log4j project. Oleg -Original Message- From: Jorrit Kronjee [mailto:[EMAIL PROTECTED] Sent: Monday, April 26, 2004 13:19 To: [EMAIL PROTECTED] Subject: customizing debugging levels per httpclient instance Hello, I have an application consisting of

customizing debugging levels per httpclient instance

2004-04-26 Thread Jorrit Kronjee
Hello, I have an application consisting of two threads. Both threads have an own instance of httpclient and use it for different things. I would like to see the wire of one of the threads, but suppress the other. I use log4j. log4j can set the debugging level (trace or not) based on package/cl