Skip to content

Commit 6f57fc1

Browse files
committed
fixed the location of , in the log message
1 parent 3901292 commit 6f57fc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/elasticsearch/river/mongodb/MongoDBRiver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ private void logStatistics() {
944944
long totalDocumentsPerSecond = (totalTimeInSeconds == 0) ? totalDocuments
945945
: totalDocuments / totalTimeInSeconds;
946946
logger.info(
947-
"Indexed {} documents, {} insertions {}, updates, {} deletions, {} documents per second",
947+
"Indexed {} documents, {} insertions, {} updates, {} deletions, {} documents per second",
948948
totalDocuments, insertedDocuments, updatedDocuments,
949949
deletedDocuments, totalDocumentsPerSecond);
950950
}

0 commit comments

Comments
 (0)