Skip to content

Commit

Permalink
Fix log level for CheckpointLivenessUpdater logs (#3563)
Browse files Browse the repository at this point in the history
The CheckpointLivenessUpdater has misleading log level causing uncertainity
while debugging
  • Loading branch information
SravanthiAshokKumar committed Mar 21, 2023
1 parent 25be252 commit 7a23715
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ protected void updateHeartbeat() {
try {
table = currentTable.get();
} catch (NoSuchElementException e) {
log.info("Encountered NoSuchElementException while accessing currentTable, ", e);
log.debug("Encountered NoSuchElementException while accessing currentTable, ", e);
return;
}

Expand Down

0 comments on commit 7a23715

Please sign in to comment.