summaryrefslogtreecommitdiff
path: root/src/mongo/db/introspect.cpp
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2020-05-14 15:38:14 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-15 20:44:35 +0000
commit6b38c78843e7eb58dc344d88903727762d7d486d (patch)
treed08071ed14f728761293ec9a1ce37ccf8ac2191b /src/mongo/db/introspect.cpp
parent2c0306062f074fb35c0554e577401227a45ad811 (diff)
downloadmongo-6b38c78843e7eb58dc344d88903727762d7d486d.tar.gz
SERVER-48148 Cleanup of execution logs in db/
Diffstat (limited to 'src/mongo/db/introspect.cpp')
-rw-r--r--src/mongo/db/introspect.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/db/introspect.cpp b/src/mongo/db/introspect.cpp
index a67929ff9b4..41598963c5f 100644
--- a/src/mongo/db/introspect.cpp
+++ b/src/mongo/db/introspect.cpp
@@ -203,8 +203,9 @@ Status createProfileCollection(OperationContext* opCtx, Database* db) {
// system.profile namespace doesn't exist; create it
LOGV2(20701,
- "Creating profile collection: {dbProfilingNS}",
- "dbProfilingNS"_attr = dbProfilingNS);
+ "Creating profile collection: {namespace}",
+ "Creating profile collection",
+ "namespace"_attr = dbProfilingNS);
CollectionOptions collectionOptions;
collectionOptions.capped = true;