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();
}
}
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
Looks like this can be fixed in Logger.java:344: