Skip to content

Commit

Permalink
Add throwable to error debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDrivenMitch committed Jul 8, 2022
1 parent 7020b64 commit 672f789
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private void checkBeatDeadline() {
private void handleHeartbeatCallResult(Throwable e) {
boolean success = e == null || isUnsupportedInstructionError(e);
if (!success) {
logger.debug("Heartbeat call resulted in an error.");
logger.debug("Heartbeat call resulted in an error.", e);
onConnectionCorrupted.run();
return;
}
Expand Down

0 comments on commit 672f789

Please sign in to comment.