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 wrote: > > 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 thr

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

2009-10-19 Thread larrydlefever
I just killed most of the afternoon trying (and failing) to get Tomcat 5.5 logging configured for just pretty basic sensible (to me, at least) output. I'm running Ubuntu. I installed Tomcat 5.5 via aptitude (the Ubuntu package-fetcher/installer). Symptoms: - a lingering System.out.pr

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 reco

RE: Tomcat 5.5 logging confusion

2008-10-24 Thread Martin Gainty
pache.org > 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. I have installed many older > versions of Tomcat with no problems but I'm stuck on this installation. > &

Tomcat 5.5 logging confusion

2008-10-24 Thread Wm.A.Stafford
I am installing Tomcat 5.5.27 on Windows XP as the servlet container for a Spring MVC app we will be hosting. I have installed many older versions of Tomcat with no problems but I'm stuck on this installation. In older Tomat versions when an application is started, in my case a Spring based a

Re: Tomcat 5.5 logging!

2008-09-23 Thread André Warnier
To: Tomcat 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 wil

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:

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 tomc

Tomcat 5.5 logging!

2008-09-23 Thread Shahar Cohen
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 tomcat log format is: patte

Example please for Embedded Tomcat 5.5 logging

2006-06-28 Thread John
I have embedded Tomcat 5.5 into our application. Works great. Right now it spits way to much information to STDERR by default including all the INFO from myFaces JSF. I have read many discussions on how to incorporate log4j etc, to take control of the logging, but could never get it to work. Cou

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 tom

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 web-inf/classes

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 properties

tomcat 5.5 logging

2005-11-02 Thread pc leung
http://tomcat.apache.org/tomcat-5.5-doc/logging.html The above page shows that logging-log4j.jar and commong-logging.jar needs to put in $CATALINA_HOME/common/lib. If I have two files of jar already in my struts webapp lib, Why do I still need to place them in $CATALINA_HOME/common/lib? In additi