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 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
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 


-
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 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 *major* benefits of having switched to log4j is that
you don't mix logging and Tomcat configurations.  You're portable.

Yoav



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



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
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]