RE: Logging configuration in Tomcat

2009-01-25 Thread Jay
: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Tuesday, January 13, 2009, 1:13 PM From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat Ok. What I am asking

RE: Logging configuration in Tomcat

2009-01-25 Thread Jay
wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Tuesday, January 13, 2009, 1:13 PM From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat Ok. What I am

RE: Logging configuration in Tomcat

2009-01-25 Thread Jay
--- On Tue, 1/13/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Tuesday, January 13, 2009, 11:29 AM From: Jay [mailto:difficult

RE: Logging configuration in Tomcat

2009-01-13 Thread Jay
...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Monday, January 12, 2009, 6:41 PM From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat There are many web apps. Log4j logger is used in all web apps

RE: Logging configuration in Tomcat

2009-01-13 Thread Caldarale, Charles R
From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat I guess, Tomcat is directing all the log4j log messages in the code to system.out which in turn is being written to catalina.out You laboring under a misconception - Tomcat doesn't interact with log4j

Re: Logging configuration in Tomcat

2009-01-13 Thread Mark Shifman
--- On Mon, 1/12/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Monday, January 12, 2009, 6:41 PM From: Jay [mailto:difficult

RE: Logging configuration in Tomcat

2009-01-13 Thread Jay
Ok. What I am asking is, is there a mechanism to roll catalina.out based on size of the file. Thanks --- On Tue, 1/13/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users

RE: Logging configuration in Tomcat

2009-01-13 Thread Caldarale, Charles R
From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat Ok. What I am asking is, is there a mechanism to roll catalina.out based on size of the file. You're missing the point. If you configure log4j properly AND your webapps do not make direct use

RE: Logging configuration in Tomcat

2009-01-12 Thread Jay
, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date: Sunday, January 11, 2009, 10:34 PM From: Jay [mailto:difficult...@yahoo.com] Subject: RE

RE: Logging configuration in Tomcat

2009-01-12 Thread Caldarale, Charles R
From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat There are many web apps. Log4j logger is used in all web apps there are no system.out or system.err Then where is your catalina.out usage coming from? Tomcat does not itself put anything

RE: Logging configuration in Tomcat

2009-01-11 Thread Caldarale, Charles R
From: Jay [mailto:difficult...@yahoo.com] Subject: Logging configuration in Tomcat Could someone let me know, how to configure the logging level also the file appender type at global level, please ? Not sure what you mean for at global level; if you're asking about Tomcat's internal

Re: Logging configuration in Tomcat

2009-01-11 Thread Rusty Wright
If you're looking for a way to have a central log4j file for all apps, that may not be easily done. I don't know how it is now, but I remember that in previous versions of tomcat sharing tomcat's logging was problematic, which I think may have been due to Commons Logging. But that's just my

RE: Logging configuration in Tomcat

2009-01-11 Thread Jay
to specify the file size no of counts for catalina.out, please ?   Thanks --- On Sun, 1/11/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Logging configuration in Tomcat To: Tomcat Users List users@tomcat.apache.org Date

RE: Logging configuration in Tomcat

2009-01-11 Thread Caldarale, Charles R
From: Jay [mailto:difficult...@yahoo.com] Subject: RE: Logging configuration in Tomcat My actual problem is that, as it is, catalina.out is growing Sounds like your webapps are using System.out or System.err for their logging, which is poor practice. They should be using a proper logging

Re: Logging configuration for Tomcat 5.5.17 to rotate access logs daily

2006-07-26 Thread Martin Gainty
-DataMine the log thru any language/script that supports regular expressions perl/sed of log (text) files -setup a Valve http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html (specifically RequestDumperValve) to capture the access HTH M-