protected void postProcess()

in src/main/java/com/spotify/logging/logback/MillisecondPrecisionSyslogAppender.java [96:110]


  protected void postProcess(final Object eventObject, final OutputStream sw) {
    if (isThrowableExcluded()) {
      return;
    }

    final ILoggingEvent event = (ILoggingEvent) eventObject;
    final IThrowableProxy tp = event.getThrowableProxy();

    if (tp == null) {
      return;
    }

    final String stackTracePrefix = stackTraceLayout.doLayout(event);
    recursiveWrite(sw, stackTracePrefix, tp, 0, null);
  }