Skip to content

Commit

Permalink
Include the full exception and stack trace when an unexpected error o…
Browse files Browse the repository at this point in the history
…ccurs in the LeaderScheduler. (#3648)

Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable authored Nov 14, 2023
1 parent abfe319 commit 8922a0f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void run() {
}

} catch (Exception e) {
LOG.error("Exception occurred: {}", e.getMessage());
LOG.error("Exception occurred in primary scheduling loop", e);
} finally {
try {
Thread.sleep(DEFAULT_LEASE_INTERVAL_MILLIS);
Expand Down

0 comments on commit 8922a0f

Please sign in to comment.