diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-07-25 11:51:23 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-07-25 11:51:23 -0400 |
commit | 672a947cf5cac8774ba744248c39b9dfef51fa0d (patch) | |
tree | 116fe325da94a7b7d62fa3f8ccbb013de2f2f654 /scripting | |
parent | 96913b23294ffab4fa2bdbac06e2da8481fe0fdb (diff) | |
download | mongo-672a947cf5cac8774ba744248c39b9dfef51fa0d.tar.gz |
spam SERVER-1478
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/sm_db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripting/sm_db.cpp b/scripting/sm_db.cpp index ce97b64eb47..84e48542f99 100644 --- a/scripting/sm_db.cpp +++ b/scripting/sm_db.cpp @@ -849,12 +849,12 @@ namespace mongo { c.setProperty( obj, "floatApprox", argv[ 0 ] ); } else { string num = c.toString( argv[ 0 ] ); - PRINT(num); + //PRINT(num); const char *numStr = num.c_str(); long long n; try { n = parseLL( numStr ); - PRINT(n); + //PRINT(n); } catch ( const AssertionException & ) { smuassert( cx , "could not convert string to long long" , false ); } |