Skip to content

Commit

Permalink
Modify log INFO with offset and new results per poll iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
castorm committed May 28, 2020
1 parent ffc7fea commit b71c6fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public List<SourceRecord> poll() throws InterruptedException {
.filter(recordFilterFactory.create(offset))
.collect(toList());

log.info("Request for offset={} yields {}/{} unseen records", offset.toMap(), records.size(), filteredRecords.size());
log.info("Request for offset {} yields {}/{} new records", offset.toMap(), filteredRecords.size(), records.size());

return filteredRecords;
}
Expand Down

0 comments on commit b71c6fc

Please sign in to comment.