use LOG(x) everywhere in mongos

This commit is contained in:
Mathias Stearn
2011-08-08 17:37:04 -04:00
parent 0045301af9
commit 0e20be567e
18 changed files with 64 additions and 64 deletions

View File

@@ -144,7 +144,7 @@ namespace mongo {
// we want to do return at least at every 5 minutes so sockets don't timeout
BSONObj z;
if ( writeBackManager.getWritebackQueue(id.str())->queue.blockingPop( z, 5 * 60 /* 5 minutes */ ) ) {
log(1) << "WriteBackCommand got : " << z << endl;
LOG(1) << "WriteBackCommand got : " << z << endl;
result.append( "data" , z );
}
else {