summaryrefslogtreecommitdiff
path: root/src/mongo/client/dbclient_cursor.cpp
diff options
context:
space:
mode:
authorBen Caimano <ben.caimano@10gen.com>2020-04-17 15:57:36 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-04-22 16:03:37 +0000
commit62b0831c4bd1d2af48aa19622cb62eb73fe7a47d (patch)
tree2f2d217828352e435b743356709a1581174ebb0c /src/mongo/client/dbclient_cursor.cpp
parenta6424fafa179805e192dc354cae85fdf0359f95e (diff)
downloadmongo-62b0831c4bd1d2af48aa19622cb62eb73fe7a47d.tar.gz
SERVER-47073 Clean up log lines in mongo/client and mongo/executor
Diffstat (limited to 'src/mongo/client/dbclient_cursor.cpp')
-rw-r--r--src/mongo/client/dbclient_cursor.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/client/dbclient_cursor.cpp b/src/mongo/client/dbclient_cursor.cpp
index 60034c05514..c3296fe49ad 100644
--- a/src/mongo/client/dbclient_cursor.cpp
+++ b/src/mongo/client/dbclient_cursor.cpp
@@ -242,8 +242,9 @@ bool DBClientCursor::initLazyFinish(bool& retry) {
if (!recvStatus.isOK() || reply.empty()) {
if (!recvStatus.isOK())
LOGV2(20129,
- "DBClientCursor::init lazy say() failed: {recvStatus}",
- "recvStatus"_attr = redact(recvStatus));
+ "DBClientCursor::init lazy say() failed: {error}",
+ "DBClientCursor::init lazy say() failed",
+ "error"_attr = redact(recvStatus));
if (reply.empty())
LOGV2(20130, "DBClientCursor::init message from say() was empty");