Re: Tomcat 5.5 logging-config elegant? Not so much, I think.

2009-10-20 Thread Tsirkin Evgeny
I didn't get it : Are you trying to get tomcat internal log to be logged somewhere or are we talking about your application's logs? Evgeny On Tue, Oct 20, 2009 at 12:42 AM, larrydlefever larrydlefe...@gmail.comwrote: I just killed most of the afternoon trying (and failing) to get Tomcat 5.5

Re: Tomcat 5.5 logging-config elegant? Not so much, I think.

2009-10-19 Thread André Warnier
larrydlefever wrote: ... a lot of things which I generally support. It's been a while since I've ranted here about Tomcat logging methodology, but I feel this may be the right moment to recant (on my non-ranting I mean) and support your posting. (And sorry to hijack a bit, I'll start a new

RE: Tomcat 5.5 logging confusion

2008-10-24 Thread Martin Gainty
Generally handled by level= which specifies how much logging is requested from common/classes/logging.properties e.g. 1catalina.org.apache.juli.FileHandler.level = FINE 1catalina.org.apache.juli.FileHandler.directory = ${catalina.base}/logs 1catalina.org.apache.juli.FileHandler.prefix =

RE: Tomcat 5.5 logging confusion

2008-10-24 Thread Caldarale, Charles R
From: Wm.A.Stafford [mailto:[EMAIL PROTECTED] Subject: Tomcat 5.5 logging confusion I am installing Tomcat 5.5.27 on Windows XP as the servlet container for a Spring MVC app we will be hosting. Are you running Tomcat as a service or from the command line? I'd recommend doing it from the

Re: Tomcat 5.5 logging!

2008-09-23 Thread André Warnier
Shahar Cohen wrote: Hi, I am trying to set my tomcat log format so it will be TAB delimited but instead its Printing the logs as spaces delimited and not TAB. Do I need to configure any other parameters between the common parameters so it will separate the parameters with tab. My

RE: Tomcat 5.5 logging!

2008-09-23 Thread Shahar Cohen
have tries to use the \t '\t' and all of its variation but without any success. Any other recommendation will be very appreciated. thanks -Original Message- From: André Warnier [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2008 3:04 PM To: Tomcat Users List Subject: Re: Tomcat 5.5

Re: Tomcat 5.5 logging!

2008-09-23 Thread André Warnier
Users List Subject: Re: Tomcat 5.5 logging! Shahar Cohen wrote: Hi, I am trying to set my tomcat log format so it will be TAB delimited but instead its Printing the logs as spaces delimited and not TAB. Do I need to configure any other parameters between the common parameters so it will separate

Re: tomcat 5.5 logging

2005-11-03 Thread andy gordon
you can put the two log jar files in your web app web-inf/lib directory and the log4j properties in your web app classes directory. make sure your web app log4j properties file specifies its own log file and log file location. Its useful and may be good practice to place all log files in the

Re: tomcat 5.5 logging

2005-11-02 Thread andy gordon
Placing the jars in the common/lib directory makes them available for all web apps and catalina itself. Placing log4j properties in the common/classes lib defines log4j behavior for all web apps (cross context). Placing log4j properties in web-inf/classes overrides cross context log4j

Re: tomcat 5.5 logging

2005-11-02 Thread pc leung
I have done something according to http://www.oracle.com/technology/products/jdev/tips/mills/Struts-logging.html I do not put the 2 jars in tomcat common lib. Instead I keep them in my webapp lib. The result is lots of error message in tomcat log dir. If I put a log4j.properties in