try {
LOGGER.debug("Creating Syslog server socket");
this.serverSocket = createServerSocket();
} catch (IOException e) {
LOGGER.error("ServerSocket creation failed.", e);
throw new SyslogRuntimeException(e);
}
while (!this.shutdown) {
try {
final Socket socket = this.serverSocket.accept();