The logs just go to stdout as normal. Assuming you're using a Unix
variant, when you run startup.sh from a console, the stdout output goes to
the console window by default. If you log out then you'll lose any further
output, but Tomcat will continue as normal.

I redirect stdout and stderr to separate files from
$TOMCAT_HOME/bin/startup.sh as follows:

$BASEDIR/tomcat.sh start "$@" >>$TOMCAT_HOME/stdout.log 
2>>$TOMCAT_HOME/stderr.log

Kevin

On Mon, 16 Apr 2001, Brian Burridge wrote:

> I've put some system out prints in my JSP pages, but I cannot find the
> error logs. I've found the logs for the web site (apache's standards
> logs) and I've found a servlet.log and a jasper.log under the jakarta
> logs directory, but I have no idea where servlet errors go.

Reply via email to