summaryrefslogtreecommitdiff
path: root/db/queryutil.cpp
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2010-05-13 00:29:59 -0700
committerAaron <aaron@10gen.com>2010-05-13 00:29:59 -0700
commit88723569747e49ab1ad644d1f91d8366e2b0f19b (patch)
treeb7f5310c751f8f4e1b76e67df2e31878d16161ff /db/queryutil.cpp
parentd72e26995e15c9c632ff9ddd0c6fa5f53e859109 (diff)
downloadmongo-88723569747e49ab1ad644d1f91d8366e2b0f19b.tar.gz
cleanup
Diffstat (limited to 'db/queryutil.cpp')
-rw-r--r--db/queryutil.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/db/queryutil.cpp b/db/queryutil.cpp
index ccdf7175f30..f24455fcbbc 100644
--- a/db/queryutil.cpp
+++ b/db/queryutil.cpp
@@ -576,7 +576,6 @@ namespace mongo {
BSONElement f = j.next();
massert( 13259, "$or array must contain objects", f.type() == Object );
if ( !j.more() ) { // if only one $or field, subfields are all required
- log() << "processing $or fields" << endl;
BSONObjIterator k( f.embeddedObject() );
while( k.more() ) {
processQueryField( k.next(), optimize );
@@ -592,7 +591,6 @@ namespace mongo {
processQueryField( e, optimize );
}
- log() << "n non: " << nNontrivialRanges() << endl;
}
// FieldRangeOrSet::FieldRangeOrSet( const char *ns, const BSONObj &query , bool optimize )