HADOOP-16243. Change Log Level to trace in NetUtils.java. Contributed by chencan.

This commit is contained in:
Arpit Agarwal 2019-04-10 13:21:04 -07:00
parent feaab241e5
commit 87407553ef
No known key found for this signature in database
GPG Key ID: E4B09E903FDF9E98

View File

@ -833,7 +833,7 @@ private static <T extends IOException> T wrapWithMessage(
Throwable t = ctor.newInstance(msg);
return (T)(t.initCause(exception));
} catch (Throwable e) {
LOG.warn("Unable to wrap exception of type {}: it has no (String) "
LOG.trace("Unable to wrap exception of type {}: it has no (String) "
+ "constructor", clazz, e);
throw exception;
}