Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question

1 Answer

The buffer size is set pretty small, try changing the buffer size to 512

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.