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

boli
21.57.2008 4cb706b08c252bbcb7a0e3604b0daf4f7341a931
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
opendj-sdk/opends/src/server/org/opends/server/core/LoggerConfigManager.java 4 ●●●● patch | view | raw | blame | history
opendj-sdk/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>();