try {
address = InetAddress.getByName(host);
} catch (UnknownHostException ex) {
String msg = "Could not find host " + host;
LOGGER.error(msg, ex);
throw new AppenderRuntimeException(msg, ex);
}
try {
ds = new DatagramSocket();
} catch (SocketException ex) {
String msg = "Could not instantiate DatagramSocket to " + host;
LOGGER.error(msg, ex);
throw new AppenderRuntimeException(msg, ex);
}
}