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

jvergara
26.57.2007 486ffa6d0abfa0b91dc7ab22ee71758b5eecfb88
opends/src/quicksetup/org/opends/quicksetup/CliApplicationHelper.java
@@ -580,6 +580,34 @@
          Utils.getCommandLineMaxLineWidth()));
      out.flush();
    }
    LOG.log(Level.INFO, msg);
  }
  /**
   * Displays a progress message in the error output.
   * @param msg the error message to be displayed.
   */
  protected void printProgressMessageNoWrap(String msg)
  {
    if (!isQuiet())
    {
      out.print(msg);
      out.flush();
    }
    LOG.log(Level.INFO, msg);
  }
  /**
   * Displays a progress message in the error output.
   * @param msg the error message to be displayed.
   */
  protected void printProgressMessageNoWrap(Message msg)
  {
    if (!isQuiet())
    {
      out.print(msg);
      out.flush();
    }
    LOG.log(Level.INFO, msg.toString());
  }