This commit is contained in:
annie-mac 2024-02-27 21:55:13 -08:00
Родитель 10a9eabb80
Коммит de1d36ab27
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -132,11 +132,11 @@ public class CosmosDBSourceTask extends SourceTask {
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
);