Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
annie-mac committed Feb 28, 2024
1 parent 10a9eab commit de1d36a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ public List<SourceRecord> poll() throws InterruptedException {
List<String> recordDetails =
records
.stream()
.map(sourceRecord -> String.format("key %s, offset %s", sourceRecord.key(), sourceRecord.sourceOffset()))
.map(sourceRecord -> String.format("[key %s - offset %s]", sourceRecord.key(), sourceRecord.sourceOffset()))
.collect(Collectors.toList());

logger.debug(
"Worker {}, sending docs {}",
"Worker {}, sending {} documents",
this.config.getWorkerName(),
recordDetails
);
Expand Down

0 comments on commit de1d36a

Please sign in to comment.