public String toString()

in command.line/java/jetbrains/buildServer/core/runtime/ProgressStatus.java [88:110]


  public String toString() {
    StringBuffer buf = new StringBuffer();
    buf.append("Status "); //$NON-NLS-1$
    if (severity == OK) {
      buf.append("OK"); //$NON-NLS-1$
    } else if (severity == ERROR) {
      buf.append("ERROR"); //$NON-NLS-1$
    } else if (severity == WARNING) {
      buf.append("WARNING"); //$NON-NLS-1$
    } else if (severity == INFO) {
      buf.append("INFO"); //$NON-NLS-1$
    } else if (severity == CANCEL) {
      buf.append("CANCEL"); //$NON-NLS-1$
    } else {
      buf.append("severity="); //$NON-NLS-1$
      buf.append(severity);
    }
    buf.append(": "); //$NON-NLS-1$
    buf.append(message);
    buf.append(' ');
    buf.append(exception);
    return buf.toString();
  }