summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-08-17 09:27:28 -0400
committerEliot Horowitz <eliot@10gen.com>2010-08-17 09:27:28 -0400
commit22f9a17983dba05e04f5004d1356f22d064e8182 (patch)
tree2e75e76b9ad7c331ff10ff4ca5803daddde38286
parentf93e19c34b1b62931d877b2b0ffb60e3027eecfd (diff)
downloadmongo-22f9a17983dba05e04f5004d1356f22d064e8182.tar.gz
fix command debugging
-rw-r--r--db/query.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/query.cpp b/db/query.cpp
index 761a312fe0e..e8e8a5d217d 100644
--- a/db/query.cpp
+++ b/db/query.cpp
@@ -657,7 +657,7 @@ namespace mongo {
bb.skip(sizeof(QueryResult));
if ( runCommands(ns, jsobj, curop, bb, cmdResBuf, false, queryOptions) ) {
- ss << " command ";
+ ss << " command: " << jsobj;
curop.markCommand();
n = 1;
qr.reset( (QueryResult *) bb.buf() );