summaryrefslogtreecommitdiff
path: root/src/mongo/db/views/view_catalog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/views/view_catalog.cpp')
-rw-r--r--src/mongo/db/views/view_catalog.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/mongo/db/views/view_catalog.cpp b/src/mongo/db/views/view_catalog.cpp
index ac084322f6e..3d3da8088b9 100644
--- a/src/mongo/db/views/view_catalog.cpp
+++ b/src/mongo/db/views/view_catalog.cpp
@@ -96,8 +96,9 @@ Status ViewCatalog::_reload(WithLock,
ViewCatalogLookupBehavior lookupBehavior) {
LOGV2_DEBUG(22546,
1,
- "reloading view catalog for database {durable_getName}",
- "durable_getName"_attr = _durable->getName());
+ "Reloading view catalog for database {db}",
+ "Reloading view catalog for database",
+ "db"_attr = _durable->getName());
_viewMap.clear();
_valid = false;
@@ -141,9 +142,9 @@ Status ViewCatalog::_reload(WithLock,
} catch (const DBException& ex) {
auto status = ex.toStatus();
LOGV2(22547,
- "could not load view catalog for database {dbName}: {error}",
- "could not load view catalog for database",
- "dbName"_attr = _durable->getName(),
+ "Could not load view catalog for database {db}: {error}",
+ "Could not load view catalog for database",
+ "db"_attr = _durable->getName(),
"error"_attr = status);
return status;
}