RE: SMTP Logger

2003-03-26 Thread Shapira, Yoav
: SMTP Logger Hi everyone, Back to this again.. Any help would be very appreciated. I'd created a custom logger that will email errors rather than log them to a file system. Unfortunately, if I add another Logger className=... declaration to server.xml, it will not use the existing Logger

Re: SMTP Logger

2003-03-26 Thread Chris Gokey
, Chris Gokey wrote: Date: 25 Mar 2003 21:47:43 -0500 From: Chris Gokey [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: SMTP Logger Hi everyone, Back to this again.. Any help would be very appreciated. I'd

Re: SMTP Logger

2003-03-25 Thread Chris Gokey
Hi everyone, Back to this again.. Any help would be very appreciated. I'd created a custom logger that will email errors rather than log them to a file system. Unfortunately, if I add another Logger className=... declaration to server.xml, it will not use the existing Logger (FileLogger).

Re: SMTP Logger

2003-03-25 Thread Craig R. McClanahan
On Tue, 25 Mar 2003, Chris Gokey wrote: Date: 25 Mar 2003 21:47:43 -0500 From: Chris Gokey [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: SMTP Logger Hi everyone, Back to this again.. Any help would be very

Re: SMTP Logger

2003-03-25 Thread Chris Gokey
] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: SMTP Logger Hi everyone, Back to this again.. Any help would be very appreciated. I'd created a custom logger that will email errors rather than log them to a file system

RE: SMTP Logger

2003-03-25 Thread George Sexton
-Original Message- From: Chris Gokey [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 7:48 PM To: Tomcat Users List Subject: Re: SMTP Logger Hi everyone, Back to this again.. Any help would be very appreciated. I'd created a custom logger that will email errors rather than log

Re: SMTP Logger

2003-03-09 Thread Chris Gokey
I implemented a class that extends org.apache.catalina.Logger that handles emailing log requests to a given recipient (those which are errors anyhow). Here is my entry in server.xml: Logger className=org.md.catalina.logger.TomcatLogger smtp=mail.attbi.com email=[EMAIL PROTECTED]/ I attached

Re: SMTP Logger

2003-03-09 Thread Chris Gokey
Sorry, I should mention that I'm using a dated version of Tomcat (4.03) and Redhat 8. Chris On Sun, 2003-03-09 at 17:10, Chris Gokey wrote: I implemented a class that extends org.apache.catalina.Logger that handles emailing log requests to a given recipient (those which are errors anyhow).

Re: SMTP Logger

2003-03-09 Thread Chris Gokey
Looks this this was just my imagination. It was communicating fine with my Logger class. I've made some changes, so if anyone else is interested, you can download the latest version from: http://home.attbi.com/~cgokey/java/logger/index.html Although, for some reason it is overriding the

SMTP Logger

2003-03-08 Thread Chris Gokey
Is there alternatives to the FileLogger class? !-- Global logger unless overridden at lower levels -- Logger className=org.apache.catalina.logger.FileLogger prefix=catalina_log. suffix=.txt timestamp=true/ I'd like intercept any errors in Tomcat and mail these