Re: How to configure logs in Tomcat 5.5?

2004-09-02 Thread Remy Maucherat
On Wed, 1 Sep 2004 19:32:27 -0700, Bill Barker [EMAIL PROTECTED] wrote: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/logger.html At least until it goes away ;-). Right, a few places still link to it. I did a rather large update of the documentation yerterday, but the bundle included

Re: How to configure logs in Tomcat 5.5?

2004-09-02 Thread Andreas Schildbach
Shapira, Yoav wrote: Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging with Tomcat, see That leads me to the following question: Is it possible to have one log per context with the new logging scheme, as it was possible with the

Re: How to configure logs in Tomcat 5.5?

2004-09-02 Thread Remy Maucherat
On Thu, 02 Sep 2004 19:43:17 +0200, Andreas Schildbach [EMAIL PROTECTED] wrote: Shapira, Yoav wrote: Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging with Tomcat, see That leads me to the following question: Is it

RE: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Shapira, Yoav
Hi, Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging with Tomcat, see http://jakarta.apache.org/tomcat/faq/misc.html#commonsLoggingLog4j. If you're unfamiliar with commons-logging or want to learn more about it, check out the

RE: How to configure logs in Tomcat 5.5?

2004-09-01 Thread V. Karthik Kumar
Hi, Are the Valves gone too? On Wed, 2004-09-01 at 22:20, Shapira, Yoav wrote: Hi, Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging with Tomcat, see http://jakarta.apache.org/tomcat/faq/misc.html#commonsLoggingLog4j. If

RE: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Shapira, Yoav
way. Yoav Shapira Millennium Research Informatics -Original Message- From: V. Karthik Kumar [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 1:00 PM To: Tomcat Users List Subject: RE: How to configure logs in Tomcat 5.5? Hi, Are the Valves gone too? On Wed, 2004-09-01 at 22

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread V. Karthik Kumar
Hi, This is because the org.apache.catalina.logger.FileLogger class was deprecated in favor of the commons-logging API (and subsequently the log4j API, though the latter is not needed, ) ... Also see: http://jakarta.apache.org/commons/logging/api/org/apache/commons/logging/impl/Jdk14Logger.html

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Jonathan Eric Miller
- From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 11:50 AM Subject: RE: How to configure logs in Tomcat 5.5? Hi, Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging

RE: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Shapira, Yoav
Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 01, 2004 2:26 PM To: Tomcat Users List Subject: Re: How to configure logs in Tomcat 5.5? Thanks for the info. Does this mean that if I don't configure the logging and an exception occurs in Tomcat, or, in an application

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Remy Maucherat
On Wed, 1 Sep 2004 14:29:32 -0400, Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, Exceptions will be logged to the console by default, yeah. Access logs have been commented out by default for a long long time, this is not new to Tomcat 5.5, and it's for performance reasons. I was thinking about

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread Bill Barker
http://jakarta.apache.org/tomcat/tomcat-5.5-doc/config/logger.html At least until it goes away ;-). Jonathan Eric Miller [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I noticed in the change log that some changes have been made to the way things are logged in Tomcat 5.5. I was