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

boli
09.57.2007 3556431695ec33f3e55c9cf147c90177b384e52d
opendj-sdk/opends/src/server/org/opends/server/loggers/debug/TraceSettings.java
@@ -166,7 +166,7 @@
  public TraceSettings(DebugTargetCfg config)
  {
    this.level =
        DebugLogLevel.parse(config.getDebugLevel().name());
        DebugLogLevel.parse(config.getDebugLevel().toString());
    Set<LogCategory> logCategories = null;
    if(!config.getDebugCategory().isEmpty())
@@ -176,7 +176,7 @@
      for(DebugTargetCfgDefn.DebugCategory category :
          config.getDebugCategory())
      {
        logCategories.add(DebugLogCategory.parse(category.name()));
        logCategories.add(DebugLogCategory.parse(category.toString()));
      }
    }
@@ -215,7 +215,7 @@
    // naming attribute. Changing it would result in a modify DN.
    this.level =
        DebugLogLevel.parse(config.getDebugLevel().name());
        DebugLogLevel.parse(config.getDebugLevel().toString());
    Set<LogCategory> logCategories = null;
    if(!config.getDebugCategory().isEmpty())
@@ -225,7 +225,7 @@
      for(DebugTargetCfgDefn.DebugCategory category :
          config.getDebugCategory())
      {
        logCategories.add(DebugLogCategory.parse(category.name()));
        logCategories.add(DebugLogCategory.parse(category.toString()));
      }
    }