HADOOP-8881. FileBasedKeyStoresFactory initialization logging should be debug not info. (tucu)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1394166 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3be0d367f4
commit
241c528166
|
@ -58,6 +58,8 @@ Release 2.0.3-alpha - Unreleased
|
|||
HADOOP-8756. Fix SEGV when libsnappy is in java.library.path but
|
||||
not LD_LIBRARY_PATH. (Colin Patrick McCabe via eli)
|
||||
|
||||
HADOOP-8881. FileBasedKeyStoresFactory initialization logging should be debug not info. (tucu)
|
||||
|
||||
Release 2.0.2-alpha - 2012-09-07
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -160,7 +160,7 @@ public class FileBasedKeyStoresFactory implements KeyStoresFactory {
|
|||
} finally {
|
||||
is.close();
|
||||
}
|
||||
LOG.info(mode.toString() + " Loaded KeyStore: " + keystoreLocation);
|
||||
LOG.debug(mode.toString() + " Loaded KeyStore: " + keystoreLocation);
|
||||
} else {
|
||||
keystore.load(null, null);
|
||||
}
|
||||
|
@ -201,7 +201,7 @@ public class FileBasedKeyStoresFactory implements KeyStoresFactory {
|
|||
truststorePassword,
|
||||
truststoreReloadInterval);
|
||||
trustManager.init();
|
||||
LOG.info(mode.toString() + " Loaded TrustStore: " + truststoreLocation);
|
||||
LOG.debug(mode.toString() + " Loaded TrustStore: " + truststoreLocation);
|
||||
|
||||
trustManagers = new TrustManager[]{trustManager};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue