log files in tomcat

2001-01-31 Thread Ross Manges
Hello folks, I apologize in advance for this dumb question, but I'm having an exteremly difficult time getting tomcat to create a log file containing the event traces (and possibly System.out.println()'s?) from my servlets. I've read up on the available faq's and other documentation, which direc

RE: log files in tomcat

2001-01-31 Thread Garmaev, Vladimir A
There should be two more logs: jvm.stderr jvm.stdout The latter is logging System.out.println -Original Message- From: Ross Manges [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 31, 2001 1:44 PM To: [EMAIL PROTECTED] Subject: log files in tomcat Hello folks, I apologize in

Re: log files in tomcat

2001-01-31 Thread Shahed Ali
I have modified my tomcat.sh/bat file to have java org.apache.whatever.tomcat start 1>/path/to/logs/stdout.log 2>&1 So when you startup tomcat , the stdout and stderr go to a file. But since you are using windows, I am not very sure about the syntax. just a > file.log may redirect both System.o

Re: log files in tomcat

2001-01-31 Thread Jason Pell
-Original Message- > From: Ross Manges [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 31, 2001 1:44 PM > To: [EMAIL PROTECTED] > Subject: log files in tomcat > > Hello folks, > > I apologize in advance for this dumb question, but I'm > having an exterem

RE: log files in tomcat

2001-01-31 Thread Ignacio J. Ortega
aje original- > De: Ross Manges [mailto:[EMAIL PROTECTED]] > Enviado el: miƩrcoles 31 de enero de 2001 20:44 > Para: [EMAIL PROTECTED] > Asunto: log files in tomcat > > > Hello folks, > > I apologize in advance for this dumb question, but I'm > having an exterem

RE: log files in tomcat

2001-01-31 Thread CPC Livelink Admin
(I think)) or b) programatically change the stream pointed to by System.out and .err to something else which you have opened. -Original Message- From: Jason Pell [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 31, 2001 8:09 PM To: [EMAIL PROTECTED] Subject: Re: log files in tomcat I

Re: log files in tomcat

2001-01-31 Thread Jason Pell
Sent: Wednesday, January 31, 2001 8:09 PM > To: [EMAIL PROTECTED] > Subject: Re: log files in tomcat > > I have also had problems with this. > > As suggested I tried adding jvm.stderr and jvm.stdout logs to server.xml: > > - serv

Configuring log files in Tomcat 4.1

2002-10-18 Thread David Scott
I get an annoying SSL warning in catalina.out on every request if the client is not authenticated by certificate, which in our application means every request. I would love to configure logging to (a) not log this warning message and (b) call catalina.out something else. The docs aren't much

[more on] Re: log files in tomcat

2001-01-31 Thread Ross Manges
the stream pointed to by System.out and .err to something else which you> have opened.>> -Original Message-> From: Jason Pell [mailto:[EMAIL PROTECTED]]> Sent: Wednesday, January 31, 2001 8:09 PM> To: [EMAIL PROTECTED]> Subject: Re: log files in tomcat>>