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

boli
09.57.2007 7ba39a6c06cd5ff7ae7ab0295a11f49703a6e859
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()));
      }
    }