private static SimpleDateFormat createDateFormat()

in src/main/java/com/spotify/logging/logback/MillisecondPrecisionSyslogStartConverter.java [117:124]


  private static SimpleDateFormat createDateFormat() {
    // ASL doesn't handle milliseconds.
    if (os.equals("Mac OS X")) {
      return new SimpleDateFormat("MMM dd HH:mm:ss", new DateFormatSymbols(Locale.US));
    } else {
      return new SimpleDateFormat("MMM dd HH:mm:ss.SSS", new DateFormatSymbols(Locale.US));
    }
  }