0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

debugging

This commit is contained in:
Alberto Lerner 2010-09-22 17:46:15 -04:00
parent 8a29068d1c
commit d1c483349f

View File

@ -1287,7 +1287,8 @@ namespace mongo {
case dbUpdate: {
int flags = d.pullInt();
BSONObj q = d.nextJsObj();
ss << " flags: " << flags << " query: " << q;
BSONObj o = d.nextJsObj();
ss << " flags: " << flags << " query: " << q << " update: " << o;
break;
}
case dbInsert: