diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2020-05-14 15:38:14 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-05-15 20:44:35 +0000 |
commit | 6b38c78843e7eb58dc344d88903727762d7d486d (patch) | |
tree | d08071ed14f728761293ec9a1ce37ccf8ac2191b /src/mongo/db/introspect.cpp | |
parent | 2c0306062f074fb35c0554e577401227a45ad811 (diff) | |
download | mongo-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.cpp | 5 |
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; |