Tony Trinh commented on Bug LOGBACK-397

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();
    }
  }
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
logback-dev@qos.ch
http://mailman.qos.ch/mailman/listinfo/logback-dev

Reply via email to