HADOOP-8881. FileBasedKeyStoresFactory initialization logging should be debug not info. (tucu)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1394165 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alejandro Abdelnur 2012-10-04 17:32:01 +00:00
parent ee13fb4f69
commit 50b20477fd
2 changed files with 4 additions and 2 deletions

View File

@ -315,6 +315,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

View File

@ -160,7 +160,7 @@ public void init(SSLFactory.Mode mode)
} 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 void init(SSLFactory.Mode mode)
truststorePassword,
truststoreReloadInterval);
trustManager.init();
LOG.info(mode.toString() + " Loaded TrustStore: " + truststoreLocation);
LOG.debug(mode.toString() + " Loaded TrustStore: " + truststoreLocation);
trustManagers = new TrustManager[]{trustManager};
}