HDDS-2213.Reduce key provider loading log level in OzoneFileSystem#getAdditionalTokenIssuers (#1556)

This commit is contained in:
Shweta Yakkali 2019-10-11 10:23:19 -07:00 committed by Arpit Agarwal
parent ec86f42e40
commit c561a70c49

View File

@ -63,7 +63,7 @@ public DelegationTokenIssuer[] getAdditionalTokenIssuers()
try {
keyProvider = getKeyProvider();
} catch (IOException ioe) {
LOG.error("Error retrieving KeyProvider.", ioe);
LOG.debug("Error retrieving KeyProvider.", ioe);
return null;
}
if (keyProvider instanceof DelegationTokenIssuer) {