Revert initial commit of HADOOP-8884 per feedback from Todd.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1395784 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
59da1ac1fc
commit
c5fc614266
|
@ -65,10 +65,6 @@ Release 2.0.3-alpha - Unreleased
|
|||
|
||||
HADOOP-8881. FileBasedKeyStoresFactory initialization logging should be debug not info. (tucu)
|
||||
|
||||
HADOOP-8884. DEBUG should be WARN for DEBUG util.NativeCodeLoader: Failed
|
||||
to load native-hadoop with error: java.lang.UnsatisfiedLinkError. (Anthony
|
||||
Rojas via atm)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -50,9 +50,12 @@ public class NativeCodeLoader {
|
|||
LOG.debug("Loaded the native-hadoop library");
|
||||
nativeCodeLoaded = true;
|
||||
} catch (Throwable t) {
|
||||
// Display warning if native-hadoop failed to load
|
||||
LOG.warn("Continuing after failing to load native-hadoop - java.library.path=" +
|
||||
System.getProperty("java.library.path") + " with error:", t);
|
||||
// Ignore failure to load
|
||||
if(LOG.isDebugEnabled()) {
|
||||
LOG.debug("Failed to load native-hadoop with error: " + t);
|
||||
LOG.debug("java.library.path=" +
|
||||
System.getProperty("java.library.path"));
|
||||
}
|
||||
}
|
||||
|
||||
if (!nativeCodeLoaded) {
|
||||
|
|
Loading…
Reference in New Issue