subject and pattern layout

2004-03-10 Thread jeb scarbrough
is is possible to use a pattern layout to change the subject of the email from an smtpappender? _ Learn how to help protect your privacy and prevent fraud online at Tech Hacks & Scams. http://special.msn.com/msnbc/techsafety.armx -

appenders

2004-03-10 Thread jeb scarbrough
If my appenders are configured like below how to get get a reference to the FOO_APPENDER appender? logger.getAppender("FOO_APPENDER") return null and logger.getAllAppenders only has ASYNC-FOO in its list. It basically want to do: logger.getAppender("ASYNC-FOO").getAppender("FOO_APPENDER"). bu

Re: SMTPAppender

2004-01-28 Thread Jeb Scarbrough
return true; > } else { > if (app != null) { > // reset the message content > int size = app.getBufferSize(); > app.setBufferSize(0); > app.setBufferSiz

SMTPAppender

2004-01-26 Thread Jeb Scarbrough
I am wanting to send all logs messags via email when i send POST a certain key-value pair to my servlet. In essence, allowing me to see a debug log of one specific request. I'm new with log4j and havent found much on this in the archives. has anyone tried to do this? is it possible? would what