소스 검색

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

Arpit Agarwal 6 년 전
부모
커밋
87407553ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/net/NetUtils.java

+ 1 - 1
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/net/NetUtils.java

@@ -833,7 +833,7 @@ public class NetUtils {
       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;
     }