From bca33aab033bca160fd7b604de72dcd28feb0fb2 Mon Sep 17 00:00:00 2001 From: Gregory Noma Date: Thu, 14 Jan 2021 09:59:29 -0500 Subject: SERVER-51048 Clean up resumable index build log messages --- src/mongo/db/active_index_builds.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/mongo/db/active_index_builds.cpp') diff --git a/src/mongo/db/active_index_builds.cpp b/src/mongo/db/active_index_builds.cpp index d9195ca23d9..bfacd4a7b95 100644 --- a/src/mongo/db/active_index_builds.cpp +++ b/src/mongo/db/active_index_builds.cpp @@ -133,8 +133,10 @@ void ActiveIndexBuilds::unregisterIndexBuild( LOGV2_DEBUG(4656004, 1, - "Index build: Unregistering", - "buildUUID"_attr = replIndexBuildState->buildUUID); + "Index build: unregistering", + "buildUUID"_attr = replIndexBuildState->buildUUID, + "collectionUUID"_attr = replIndexBuildState->collectionUUID); + indexBuildsManager->unregisterIndexBuild(replIndexBuildState->buildUUID); _indexBuildsCompletedGen++; _indexBuildsCondVar.notify_all(); -- cgit v1.2.1