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]

Reply via email to