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

Jean-Noël Rouvignac
20.42.2016 61b9eb1be03fc03a9f4bb0013a08ff44a1059503
opendj-server-legacy/src/main/java/org/opends/server/loggers/ConsoleDebugLogPublisher.java
@@ -34,14 +34,10 @@
public class ConsoleDebugLogPublisher extends
    DebugLogPublisher<DebugLogPublisherCfg>
{
  /**
   * The print stream where tracing will be sent.
   */
  /** The print stream where tracing will be sent. */
  private PrintStream err;
  /**
   * The format used for trace timestamps.
   */
  /** The format used for trace timestamps. */
  private DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SSS");
  /**
@@ -54,14 +50,12 @@
    this.err = err;
  }
  /** {@inheritDoc} */
  @Override
  public void initializeLogPublisher(DebugLogPublisherCfg config, ServerContext serverContext)
      throws ConfigException, InitializationException {
    // This publisher is not configurable.
  }
  /** {@inheritDoc} */
  @Override
  public void trace(TraceSettings settings,
                           String signature,
@@ -77,7 +71,6 @@
    publish(msg, stack);
  }
  /** {@inheritDoc} */
  @Override
  public void traceException(TraceSettings settings,
                          String signature,
@@ -98,7 +91,6 @@
    publish(message, stack);
  }
  /** {@inheritDoc} */
  @Override
  public void close()
  {
@@ -134,7 +126,6 @@
    err.print(buf);
  }
  /** {@inheritDoc} */
  @Override
  public DN getDN()
  {