DBZ-8201 Reduce log verbosity on OpenLogReplicator confirmation

This commit is contained in:
Chris Cranford 2024-09-04 05:57:20 -04:00 committed by Chris Cranford
parent b15ce52021
commit eed82f5bb6

View File

@ -170,7 +170,7 @@ private StreamingEvent readNextEvent() {
private void confirm(long newScn, Long index) { private void confirm(long newScn, Long index) {
if (prevScn != 0 && prevScn < newScn && index != null) { if (prevScn != 0 && prevScn < newScn && index != null) {
LOGGER.info("Confirming SCN {} with index {}", newScn, index); LOGGER.debug("Confirming SCN {} with index {}", newScn, index);
send(createRequest(RequestCode.CONFIRM).setCScn(newScn).setCIdx(index).build()); send(createRequest(RequestCode.CONFIRM).setCScn(newScn).setCIdx(index).build());
} }
prevScn = newScn; prevScn = newScn;