Skip to content

Commit

Permalink
[SMALLFIX] Fix logging message in ManagerProcessContext.java
Browse files Browse the repository at this point in the history
### What changes are proposed in this pull request?

Fix logging messages in
hub/server/src/main/java/alluxio/hub/manager/process/ManagerProcessContext.java

### Why are the changes needed?

Fix #634 Alluxio/Community#634


### Does this PR introduce any user facing changes?

None

pr-link: #15068
change-id: cid-d8cda1723870cea7a8411055d781350ebe528878
  • Loading branch information
witheredwood authored Feb 28, 2022
1 parent e9b0004 commit 14ed52e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private HostedManagerServiceGrpc.HostedManagerServiceStub getHostedAsyncStub() {
mHostedAsyncSub =
HostedManagerServiceGrpc.newStub(channel);
} catch (AlluxioStatusException e) {
LOG.error("Error connecting to hosted hub {}", e);
LOG.error("Error connecting to hosted hub: ", e);
}
}
return mHostedAsyncSub;
Expand Down

0 comments on commit 14ed52e

Please sign in to comment.