Skip to content

Commit

Permalink
DBZ-8244 Change logging level of a failed blocking snapshot from ERRO…
Browse files Browse the repository at this point in the history
…R to WARN with full stacktrace
  • Loading branch information
mfvitale committed Sep 27, 2024
1 parent d5bf435 commit edfba15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ public void doBlockingSnapshot(P partition, OffsetContext offsetContext, Snapsho

}
catch (Exception e) {
LOGGER.error("Error while executing requested blocking snapshot: {}", e.getMessage());
LOGGER.warn("Error while executing requested blocking snapshot.", e);
resumeStreaming(partition);
}
}
Expand Down

0 comments on commit edfba15

Please sign in to comment.