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/trunk@1376322 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0555a2145d
commit
5b790ab046
@ -311,6 +311,9 @@ Branch-2 ( Unreleased changes )
|
|||||||
HADOOP-8239. Add subclasses of MD5MD5CRC32FileChecksum to support file
|
HADOOP-8239. Add subclasses of MD5MD5CRC32FileChecksum to support file
|
||||||
checksum with CRC32C. (Kihwal Lee via szetszwo)
|
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
|
BUG FIXES
|
||||||
|
|
||||||
HADOOP-8372. NetUtils.normalizeHostName() incorrectly handles hostname
|
HADOOP-8372. NetUtils.normalizeHostName() incorrectly handles hostname
|
||||||
|
@ -47,7 +47,7 @@ public class NativeCodeLoader {
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
System.loadLibrary("hadoop");
|
System.loadLibrary("hadoop");
|
||||||
LOG.info("Loaded the native-hadoop library");
|
LOG.debug("Loaded the native-hadoop library");
|
||||||
nativeCodeLoaded = true;
|
nativeCodeLoaded = true;
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
// Ignore failure to load
|
// Ignore failure to load
|
||||||
|
Loading…
Reference in New Issue
Block a user