diff options
Diffstat (limited to 'src/mongo/db/introspect.cpp')
-rw-r--r-- | src/mongo/db/introspect.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mongo/db/introspect.cpp b/src/mongo/db/introspect.cpp index 8a6cca1dabb..1893f38b87e 100644 --- a/src/mongo/db/introspect.cpp +++ b/src/mongo/db/introspect.cpp @@ -80,7 +80,7 @@ void _appendUserInfo(const CurOp& c, BSONObjBuilder& builder, AuthorizationSessi } // namespace -void profile(OperationContext* txn, int op) { +void profile(OperationContext* txn, NetworkOp op) { // Initialize with 1kb at start in order to avoid realloc later BufBuilder profileBufBuilder(1024); @@ -148,8 +148,9 @@ void profile(OperationContext* txn, int op) { } } } catch (const AssertionException& assertionEx) { - warning() << "Caught Assertion while trying to profile " << opToString(op) << " against " - << CurOp::get(txn)->getNS() << ": " << assertionEx.toString() << endl; + warning() << "Caught Assertion while trying to profile " << networkOpToString(op) + << " against " << CurOp::get(txn)->getNS() << ": " << assertionEx.toString() + << endl; } } |