summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2020-06-08 12:30:39 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-19 03:05:39 +0000
commita10fe7ccfd6f11a90df725c60ceea6bcb4762a59 (patch)
tree7d095395eb9695b97faaad925405d469906134b5
parentc9454a38845a3755e6ec638dea570122cc68ae61 (diff)
downloadmongo-a10fe7ccfd6f11a90df725c60ceea6bcb4762a59.tar.gz
SERVER-48585 Fix Compact end log statement
(cherry picked from commit 07765dda62d4709cddc9506ea378c0d711791b57)
-rw-r--r--src/mongo/db/catalog/collection_compact.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/catalog/collection_compact.cpp b/src/mongo/db/catalog/collection_compact.cpp
index 5ff9cbc01b7..19e31d14568 100644
--- a/src/mongo/db/catalog/collection_compact.cpp
+++ b/src/mongo/db/catalog/collection_compact.cpp
@@ -125,7 +125,7 @@ StatusWith<int64_t> compactCollection(OperationContext* opCtx,
oldTotalSize - recordStore->storageSize(opCtx) - collection->getIndexSize(opCtx);
LOGV2(20286,
"compact {namespace} end, bytes freed: {freedBytes}",
- "Compact end"
+ "Compact end",
"namespace"_attr = collectionNss,
"freedBytes"_attr = totalSizeDiff);
return totalSizeDiff;