Re: redirecting logging messages from a thread within a servlet

2005-12-23 Thread Boris Unckel
Hi Bill, hm, the same logger (name) is not necessarily the same instance due to org.apache.juli.ClassLoaderLogManager with TCCL approach. But a configuration entry should work for the same category. I am sorry, but I do not have my home computer here (somehow public terminal), I am not able to te

Re: redirecting logging messages from a thread within a servlet

2005-12-23 Thread Martin Gainty
t; <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, December 23, 2005 9:59 AM Subject: Re: redirecting logging messages from a thread within a servlet Cheers Boris but I had already tried that, but with no luck I am afraid. Yes I am using java.util.logging.Logger. Regards,

Re: redirecting logging messages from a thread within a servlet

2005-12-23 Thread Bill Comer
Cheers Boris but I had already tried that, but with no luck I am afraid. Yes I am using java.util.logging.Logger. Regards, Bill On 12/23/05, Boris Unckel <[EMAIL PROTECTED]> wrote: > Hello Bill, > > may be the following changes can help. I assume you are using > java.util.logging.Logger > > Bil

Re: redirecting logging messages from a thread within a servlet

2005-12-23 Thread Boris Unckel
Hello Bill, may be the following changes can help. I assume you are using java.util.logging.Logger Bill Comer wrote: > Any ideas how this can be resolved ? > > thanks in advance. > Bill > > Below is a code snippet. > > public class BillTestServlet extends BaseServlet { > >private final Logge

redirecting logging messages from a thread within a servlet

2005-12-23 Thread Bill Comer
I have a requirement that all servlets in an application to return immediately and with a standard response. Any processing needs to be done offline. I could have the servlet log the request to a database for a separate application to pick up. I do not want this solution as we have atleast 20 unas

redirecting logging messages from a thread within a servlet

2005-12-14 Thread Bill Comer
I have a requirement that all servlets in an application to return immediately and with a standard response. Any processing needs to be done offline. I could have the servlet log the request to a database for a separate application to pick up. I do not want this solution as we have atleast 20 unas