AW: configuring email appending for WARN and above

2010-08-17 Thread Stadelmann Josef

If I have the architecture of the log4j system correct in mind ...
It's the Appender which gets attached to the Logger feeding the Appender.
If the your Logger is at level=ERROR then the APPENDER will only receive
ERROR and above messages to append. Therefore I would check first the logger

i.e.
log4j.logger.org.apache.axiom=WARN, email, CONSOLE, R, CHAINSAW_CLIENT
means 
the Logger axiom will feed Appender email, CONSOLE, R and CHAINSAW_CLIENT

Please check your Logger definition and lower it to at least level=WARN
Josef

-Ursprüngliche Nachricht-
Von: Curtis Garman [mailto:curt.gar...@gmail.com] 
Gesendet: Montag, 16. August 2010 19:26
An: log4j-user@logging.apache.org
Betreff: configuring email appending for WARN and above

Can someone tell if it is possible to configure the smtp email appender to
send email for WARN level message and above? I seem to only be able to get
ERROR level stuff to come back in email form.

log4j.appender.email=org.apache.log4j.net.SMTPAppender
log4j.appender.email.SMTPHost=smtp.server
log4j.appender.email.SMTPDebug=false
log4j.appender.email.bufferSize=1
log4j.appender.email.from=f...@domain.com
log4j.appender.email.to...@domain.com
log4j.appender.email.subject=subject
log4j.appender.email.threshold=WARN
log4j.appender.email.layout=org.apache.log4j.PatternLayout
log4j.appender.email.layout.ConversionPattern=[%p]
%d{ISO8601}%n%n%c:%L%n%n%m%n

-- 
Curtis

-
To unsubscribe, e-mail: log4j-user-unsubscr...@logging.apache.org
For additional commands, e-mail: log4j-user-h...@logging.apache.org



configuring email appending for WARN and above

2010-08-16 Thread Curtis Garman
Can someone tell if it is possible to configure the smtp email appender to
send email for WARN level message and above? I seem to only be able to get
ERROR level stuff to come back in email form.

log4j.appender.email=org.apache.log4j.net.SMTPAppender
log4j.appender.email.SMTPHost=smtp.server
log4j.appender.email.SMTPDebug=false
log4j.appender.email.bufferSize=1
log4j.appender.email.from=f...@domain.com
log4j.appender.email.to...@domain.com
log4j.appender.email.subject=subject
log4j.appender.email.threshold=WARN
log4j.appender.email.layout=org.apache.log4j.PatternLayout
log4j.appender.email.layout.ConversionPattern=[%p]
%d{ISO8601}%n%n%c:%L%n%n%m%n

-- 
Curtis


Re: configuring email appending for WARN and above

2010-08-16 Thread Jacob Kjome

This is documented in the SMTPAppender Javadoc [1].

log4j.appender.email.EvaluatorClass=com.mypackage.MyCustomTriggeringEventEvaluator

...where the latter class implements TriggeringEventEvaluator [2].


[1] 
http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/net/SMTPAppender.html
[2] 
http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/spi/TriggeringEventEvaluator.html


Jake


On Mon, 16 Aug 2010 12:25:42 -0500
 Curtis Garman curt.gar...@gmail.com wrote:

Can someone tell if it is possible to configure the smtp email appender to
send email for WARN level message and above? I seem to only be able to get
ERROR level stuff to come back in email form.

log4j.appender.email=org.apache.log4j.net.SMTPAppender
log4j.appender.email.SMTPHost=smtp.server
log4j.appender.email.SMTPDebug=false
log4j.appender.email.bufferSize=1
log4j.appender.email.from=f...@domain.com
log4j.appender.email.to...@domain.com
log4j.appender.email.subject=subject
log4j.appender.email.threshold=WARN
log4j.appender.email.layout=org.apache.log4j.PatternLayout
log4j.appender.email.layout.ConversionPattern=[%p]
%d{ISO8601}%n%n%c:%L%n%n%m%n

--
Curtis



-
To unsubscribe, e-mail: log4j-user-unsubscr...@logging.apache.org
For additional commands, e-mail: log4j-user-h...@logging.apache.org



Re: configuring email appending for WARN and above

2010-08-16 Thread Curtis Garman
Thanks, Jacob...I'll investigate this.

On Mon, Aug 16, 2010 at 1:06 PM, Jacob Kjome h...@visi.com wrote:

 This is documented in the SMTPAppender Javadoc [1].


 log4j.appender.email.EvaluatorClass=com.mypackage.MyCustomTriggeringEventEvaluator

 ...where the latter class implements TriggeringEventEvaluator [2].


 [1]
 http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/net/SMTPAppender.html
 [2]
 http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/spi/TriggeringEventEvaluator.html

 Jake



 On Mon, 16 Aug 2010 12:25:42 -0500
  Curtis Garman curt.gar...@gmail.com wrote:

 Can someone tell if it is possible to configure the smtp email appender to
 send email for WARN level message and above? I seem to only be able to get
 ERROR level stuff to come back in email form.

 log4j.appender.email=org.apache.log4j.net.SMTPAppender
 log4j.appender.email.SMTPHost=smtp.server
 log4j.appender.email.SMTPDebug=false
 log4j.appender.email.bufferSize=1
 log4j.appender.email.from=f...@domain.com
 log4j.appender.email.to...@domain.com
 log4j.appender.email.subject=subject
 log4j.appender.email.threshold=WARN
 log4j.appender.email.layout=org.apache.log4j.PatternLayout
 log4j.appender.email.layout.ConversionPattern=[%p]
 %d{ISO8601}%n%n%c:%L%n%n%m%n

 --
 Curtis



 -
 To unsubscribe, e-mail: log4j-user-unsubscr...@logging.apache.org
 For additional commands, e-mail: log4j-user-h...@logging.apache.org




-- 
Curtis Garman