summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2019-11-21 22:36:46 +0000
committerevergreen <evergreen@mongodb.com>2019-11-21 22:36:46 +0000
commit300458bb1ed89940649560e92ff84c81a4a77678 (patch)
tree88f1e90d56f9d67b3335d7162a123d40b3d05996 /src/mongo/db/storage
parent92d0ebf34f39f82f430869273ae751c1d97ec960 (diff)
downloadmongo-300458bb1ed89940649560e92ff84c81a4a77678.tar.gz
SERVER-44467 Implement startup recovery for two-phase index builds
Diffstat (limited to 'src/mongo/db/storage')
-rw-r--r--src/mongo/db/storage/storage_engine_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/storage_engine_impl.cpp b/src/mongo/db/storage/storage_engine_impl.cpp
index 213c3c50937..4763ddbdf13 100644
--- a/src/mongo/db/storage/storage_engine_impl.cpp
+++ b/src/mongo/db/storage/storage_engine_impl.cpp
@@ -456,7 +456,7 @@ StatusWith<StorageEngine::ReconcileResult> StorageEngineImpl::reconcileCatalogAn
invariant(collUUID);
auto buildUUID = *indexMetaData.buildUUID;
- log() << "Found index from unfinished build. Collection: " << coll << "("
+ log() << "Found index from unfinished build. Collection: " << coll << " ("
<< *collUUID << "), index: " << indexName << ", build UUID: " << buildUUID;
// Insert in the map if a build has not already been registered.