private static LoggerContext setupLoggerContext()

in src/main/java/com/spotify/logging/LoggingConfigurator.java [562:569]


  private static LoggerContext setupLoggerContext(Logger rootLogger, String ident) {
    final LoggerContext context = rootLogger.getLoggerContext();
    context.reset();
    context.putProperty("ident", ident);
    context.putProperty("pid", getMyPid());
    context.putProperty("hostname", getSpotifyHostname());
    return context;
  }