summaryrefslogtreecommitdiff
path: root/src/mongo/db
diff options
context:
space:
mode:
authorGregory Noma <gregory.noma@gmail.com>2020-11-03 12:31:04 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-11-03 18:47:52 +0000
commit97613f7088f9d1cdb2190297de1c0df4c9dc70fc (patch)
tree9ba30dea6688f2ca0ae709ad2942d03eb98496ce /src/mongo/db
parent041e32bdd8f6ef5dcc3716f663fc43882e1a4092 (diff)
downloadmongo-97613f7088f9d1cdb2190297de1c0df4c9dc70fc.tar.gz
SERVER-51796 Add missing comma to log message 22334
Diffstat (limited to 'src/mongo/db')
-rw-r--r--src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
index eb484ac60b5..7317c92d1b3 100644
--- a/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
+++ b/src/mongo/db/storage/wiredtiger/wiredtiger_kv_engine.cpp
@@ -1366,10 +1366,7 @@ Status WiredTigerKVEngine::recoverOrphanedIdent(OperationContext* opCtx,
return status;
}
- LOGV2(22334,
- "Moving orphaned data file back as {file}",
- "Restoring orphaned data file"
- "file"_attr = identFilePath->generic_string());
+ LOGV2(22334, "Restoring orphaned data file", "file"_attr = identFilePath->generic_string());
boost::filesystem::remove(*identFilePath, ec);
if (ec) {