Skip to content

Commit

Permalink
HADOOP-18387. Fix incorrect placeholder in hadoop-module.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhujiang02 committed Aug 3, 2022
1 parent 5899b2f commit 820aaee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,7 @@ public <T extends FileSystem & Renewable> void removeRenewAction(
try {
action.cancel();
} catch (InterruptedException ie) {
LOG.error("Interrupted while canceling token for {} filesystem." + fs.getUri()
+ "filesystem");
LOG.error("Interrupted while canceling token for {} filesystem." , fs.getUri());
LOG.debug("Exception in removeRenewAction.", ie);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ protected void serviceStart() throws Exception {
bindingDiagnosticDetails(),
dumpRegistryRobustly(true));

LOG.error(" Failure {}", e.getMessage(), e);
LOG.error(" Failure {}", e, e);
LOG.error(message);

// TODO: this is something temporary to deal with the problem
Expand Down

0 comments on commit 820aaee

Please sign in to comment.