HADOOP-8075. Lower native-hadoop library log from info to debug. Contributed by Hızır Sefa İrken
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1376323 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0490537635
commit
135a721b0f
|
@ -104,6 +104,9 @@ Release 2.0.1-alpha - UNRELEASED
|
|||
HADOOP-8239. Add subclasses of MD5MD5CRC32FileChecksum to support file
|
||||
checksum with CRC32C. (Kihwal Lee via szetszwo)
|
||||
|
||||
HADOOP-8075. Lower native-hadoop library log from info to debug.
|
||||
(Hızır Sefa İrken via eli)
|
||||
|
||||
BUG FIXES
|
||||
|
||||
HADOOP-8372. NetUtils.normalizeHostName() incorrectly handles hostname
|
||||
|
|
|
@ -47,7 +47,7 @@ public class NativeCodeLoader {
|
|||
}
|
||||
try {
|
||||
System.loadLibrary("hadoop");
|
||||
LOG.info("Loaded the native-hadoop library");
|
||||
LOG.debug("Loaded the native-hadoop library");
|
||||
nativeCodeLoaded = true;
|
||||
} catch (Throwable t) {
|
||||
// Ignore failure to load
|
||||
|
|
Loading…
Reference in New Issue