Re: per-user, per-app logging in dev environment

2004-02-17 Thread Tim Funk
You could use the swallowOutput attribute. Look in the docs or archives for more info on it. IIRC, that should do what you need. But the better way is to use log4j or similar. Logging packages similar to log4j are sweet since you can turn up or down the debugging per class. (That is, if you

Re: per-user, per-app logging in dev environment

2004-02-17 Thread John Beamon
I searched the archive online for swallowOutput, and there were zero results. What is it? Where do I implement it? Is this part of the Java code or part of the Tomcat server.xml? Give me a hint here; if I knew how to do this, I wouldn't have asked for help! -- John Beamon Systems

Re: per-user, per-app logging in dev environment

2004-02-17 Thread Tim Funk
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/context.html http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/defaultcontext.html http://jakarta.apache.org/tomcat/faq/misc.html#catalina.out eg: Context ... swallowOutput=true .. / -Tim John Beamon wrote: I searched the archive

RE: per-user, per-app logging in dev environment

2004-02-17 Thread Ralph Einfeldt
The hint: http://www.google.de/search?q=swallowoutput -Original Message- From: John Beamon [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 4:34 PM To: Tomcat Users List Subject: Re: per-user, per-app logging in dev environment I searched the archive online

Re: per-user, per-app logging in dev environment

2004-02-17 Thread John Beamon
Thanks. I just implemented it, and it appears to have fixed the problem. I hadn't spotted the swallowOutput=false in these Contexts, and I'm not sure who put them there. :-) Is it just me, or are the Tomcat docs not exactly easy to search? -- John Beamon Systems Administrator Franklin

RE: per-user, per-app logging in dev environment

2004-02-17 Thread Mike Curwen
this string (minus quotes) into google: site:jakarta.apache.org swallowoutput -Original Message- From: John Beamon [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 9:56 AM To: Tomcat Users List Subject: Re: per-user, per-app logging in dev environment Thanks. I just