RE: Logging to my app.

2002-12-13 Thread Shapira, Yoav
Howdy, getServletContext().log(...); The ServletContext javadoc has more details. Yoav Shapira Millennium ChemInformatics -Original Message- From: Alexander Wallace [mailto:[EMAIL PROTECTED]] Sent: Friday, December 13, 2002 1:00 PM To: [EMAIL PROTECTED] Subject: Logging to my app.

Re: Logging to my app.

2002-12-13 Thread Patrick GIRY
In your server.xml you define a Logger in you web app context like this : Context path=/examples docBase=examples debug=0 reloadable=true crossContext=true Logger className=org.apache.catalina.logger.FileLogger prefix=localhost_examples_log. suffix=.txt

Re: Logging to my app.

2002-12-13 Thread Alexander Wallace
Thanks, i do have that working already, but you know how all (almost all) the System.out.println() goes into cataline.log, i was wondering if there was an easy line to send to the app log, not he catalina.log. On Friday 13 December 2002 12:05, Patrick GIRY wrote: In your server.xml you define

Re: Logging to my app.

2002-12-13 Thread Alexander Wallace
Thanks, i'll check it out. On Friday 13 December 2002 12:05, Shapira, Yoav wrote: Howdy, getServletContext().log(...); The ServletContext javadoc has more details. Yoav Shapira Millennium ChemInformatics -Original Message- From: Alexander Wallace [mailto:[EMAIL PROTECTED]]