I'm using the SMTP appender in jboss-log4j.xml to send errors via email, sometimes it just gets crazy and start sending one line of stack trace per email and the email trafic becomes very high because of this
Hou can I prevent this to happen is there any config option for this os is this jut a bug in jboss log4 ?
my conf for the appender
<appender name="SMTP" class="org.apache.log4j.net.SMTPAppender">
<errorHandler class="org.jboss.logging.util.OnlyOnceErrorHandler"/>
<param name="Threshold" value="ERROR"/>
<param name="To" value="email to"/>
<param name="From" value="email from"/>
<param name="Subject" value="SUBJECT"/>
<param name="SMTPHost" value="localhost"/>
<param name="BufferSize" value="10"/>
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="[%d{ABSOLUTE},%c{1}] %m%n"/>
</layout>
</appender>