Re: webapp exceptions redirect them to webapps log

2004-11-01 Thread Shahin Hadjikuliev
Hi, To write a information to the log file , you have to add a line in your code, I didn't know how to configure it over server.xml On Fri, 29 Oct 2004 17:14:46 -0700, Mufaddal Khumri [EMAIL PROTECTED] wrote: Hi, I am using Tomcat 5.0.27. I am using a FileLogger as the appender (log4j) to

Re: webapp exceptions redirect them to webapps log

2004-11-01 Thread Shahin Hadjikuliev
Sorry I didn't know how to configure it over server.xml I don't knwo :) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: webapp exceptions redirect them to webapps log

2004-11-01 Thread Shapira, Yoav
Hi, How do I configure tomcat to send output resulting from exceptions in my webapp to this log file? Do I have to configure server.xml to do so? It's not a Tomcat configuration matter. In your application, try { ... } catch (Exception e) { logger.error(Oops, e); } In fact, one of the

webapp exceptions redirect them to webapps log

2004-10-29 Thread Mufaddal Khumri
Hi, I am using Tomcat 5.0.27. I am using a FileLogger as the appender (log4j) to write my logs to under WEB-INF/log. How do I configure tomcat to send output resulting from exceptions in my webapp to this log file? Do I have to configure server.xml to do so? Mufaddal Khumri