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

Nicolas Capponi
10.17.2014 56269af431723ec4c456c92d0d019e7f6e16832a
opendj3-server-dev/src/server/org/opends/server/loggers/TraceSettings.java
@@ -137,7 +137,7 @@
   * @param level
   *          Level for this settings.
   */
  public TraceSettings(Level level)
  private TraceSettings(Level level)
  {
    this(level, false, false, 0, false);
@@ -159,7 +159,7 @@
   * @param includeCause
   *          whether to include the cause of exceptions.
   */
  public TraceSettings(Level level, boolean noArgs,
  TraceSettings(Level level, boolean noArgs,
      boolean noRetVal, int stackDepth, boolean includeCause)
  {
    this.level = level;
@@ -176,7 +176,7 @@
   *          The debug target configuration that contains the information to
   *          use to initialize this trace setting.
   */
  public TraceSettings(DebugTargetCfg config)
  TraceSettings(DebugTargetCfg config)
  {
    this.level =
        Level.getLevel(config.isEnabled(), config.isDebugExceptionsOnly());