HDFS-15043. RBF: The detail of the Exception is not shown in ZKDelegationTokenSecretManagerImpl (#1748)

This commit is contained in:
Akira Ajisaka 2019-12-10 16:00:20 +09:00 committed by GitHub
parent 4dffd81bb7
commit 9f09852051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public class ZKDelegationTokenSecretManagerImpl extends
try { try {
super.startThreads(); super.startThreads();
} catch (IOException e) { } catch (IOException e) {
LOG.error("Error starting threads for zkDelegationTokens "); LOG.error("Error starting threads for zkDelegationTokens", e);
} }
LOG.info("Zookeeper delegation token secret manager instantiated"); LOG.info("Zookeeper delegation token secret manager instantiated");
} }