Fix incorrect log level in NetUtil

This commit is contained in:
Trustin Lee 2013-04-23 22:53:26 +09:00
parent d292fdafdd
commit be1426a220

View File

@ -120,7 +120,7 @@ public final class NetUtil {
} }
} catch (SocketException e) { } catch (SocketException e) {
//Nope. Can't do anything else, sorry! //Nope. Can't do anything else, sorry!
logger.error("Failed to enumerate network interfaces", e); logger.warn("Failed to enumerate network interfaces", e);
} }
} }