in src/main/java/com/spotify/logging/LoggingConfigurator.java [592:595]
private static int getSyslogPort() {
final String port = System.getenv().getOrDefault(SPOTIFY_SYSLOG_PORT, "");
return port.isEmpty() ? -1 : Integer.parseInt(port);
}