|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
_______________________________________________ logback-dev mailing list [email protected] http://mailman.qos.ch/mailman/listinfo/logback-dev

Looks like this can be fixed in Logger.java:344:
void recursiveReset() { detachAndStopAllAppenders(); localLevelReset(); additive = true; if (childrenList == null) { return; }// Use CopyOnWriteArrayList<Logger> to avoid ConcurrentModificationException for (Logger childLogger : new CopyOnWriteArrayList<Logger>(childrenList)) { childLogger.recursiveReset(); } }