mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

boli
21.57.2008 1e78859f4b0a4c8982451aa02002705b2c94ed60
Fixed a typo in the logger configuration manager that caused new log publishers to be added twice. 

Fix for issue 2861
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/core/LoggerConfigManager.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/core/LoggerConfigManager.java
@@ -22,7 +22,7 @@
 * CDDL HEADER END
 *
 *
 *      Portions Copyright 2006-2007 Sun Microsystems, Inc.
 *      Portions Copyright 2006-2008 Sun Microsystems, Inc.
 */
package org.opends.server.core;
import org.opends.messages.Message;
@@ -77,7 +77,7 @@
    RootCfg root = context.getRootConfiguration();
    root.addLogPublisherAddListener(this);
    root.addLogPublisherAddListener(this);
    root.addLogPublisherDeleteListener(this);
    List<DebugLogPublisherCfg> debugPublisherCfgs =
        new ArrayList<DebugLogPublisherCfg>();