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

does anyone know what

<error-manager>
    <only-once/>
</error-manager>

mean in jboss-logging.xml?

share|improve this question

1 Answer

up vote 1 down vote accepted

I believe it sets the log4j error handler to be an instance of the OnlyOnceErrorHandler class.

Quoting the relevant JavaDoc page:

The OnlyOnceErrorHandler implements log4j's default error handling policy which consists of emitting a message for the first error in an appender and ignoring all following errors.

The error message is printed on System.err.

This policy aims at protecting an otherwise working application from being flooded with error messages when logging fails.

share|improve this answer
Here you can find the source of the JBoss OnlyOnceErrorHandler class: source.jboss.org/browse/JBossCommon/jboss-logmanager/trunk/src/…. – Lukasz Stelmach Jul 7 '11 at 13:31

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.