@Override
 public BasicDBObject next() {
   DBObject next = iterator.next();
   if (log.isDebugEnabled()) {
     log.debug(
         "<-"
             + mongoCollection.getDbCollection().getName()
             + "-- "
             + mongoCollection.toString(next));
   }
   return (BasicDBObject) next;
 }