diff options
author | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-04-28 14:18:50 -0400 |
---|---|---|
committer | Tess Avitabile <tess.avitabile@mongodb.com> | 2017-05-23 17:37:13 -0400 |
commit | f56ae945275aa9360d2d6eae192b64d558ede20b (patch) | |
tree | ef6a8deb33dc5e6eef3a108625eb8979c0cffbc9 /src/mongo/db/read_concern.cpp | |
parent | 9ef7f6dfedfbacfeabc67f4579c397647c78f8d1 (diff) | |
download | mongo-f56ae945275aa9360d2d6eae192b64d558ede20b.tar.gz |
SERVER-28575 Profile entry for update/delete should contain entire raw update/delete
Diffstat (limited to 'src/mongo/db/read_concern.cpp')
-rw-r--r-- | src/mongo/db/read_concern.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/read_concern.cpp b/src/mongo/db/read_concern.cpp index ce0405dfbc3..230946c225c 100644 --- a/src/mongo/db/read_concern.cpp +++ b/src/mongo/db/read_concern.cpp @@ -181,7 +181,7 @@ Status waitForReadConcern(OperationContext* opCtx, const repl::ReadConcernArgs& return status; } - LOG(debugLevel) << "Using 'committed' snapshot: " << CurOp::get(opCtx)->query(); + LOG(debugLevel) << "Using 'committed' snapshot: " << CurOp::get(opCtx)->opDescription(); } return Status::OK(); |