summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2017-11-30 18:29:53 -0500
committerMathias Stearn <mathias@10gen.com>2017-12-08 14:07:07 -0500
commit2680f414b5fd303b93e48ff5a49fdf04535f05ec (patch)
tree08549d9af58427c56ec7dbfd9522d77e64e95ef6
parent84656c3cca63fc26b4b92fb9957ab31e43028730 (diff)
downloadmongo-2680f414b5fd303b93e48ff5a49fdf04535f05ec.tar.gz
SERVER-32130 stop printing arguments in code generation tools
-rw-r--r--site_scons/site_tools/jstoh.py1
-rw-r--r--src/mongo/db/fts/generate_stop_words.py6
2 files changed, 0 insertions, 7 deletions
diff --git a/site_scons/site_tools/jstoh.py b/site_scons/site_tools/jstoh.py
index dc90b324b28..26eb6cbbf24 100644
--- a/site_scons/site_tools/jstoh.py
+++ b/site_scons/site_tools/jstoh.py
@@ -39,7 +39,6 @@ def jsToHeader(target, source):
text = '\n'.join(h)
- print "writing: %s" % outFile
with open(outFile, 'wb') as out:
try:
out.write(text)
diff --git a/src/mongo/db/fts/generate_stop_words.py b/src/mongo/db/fts/generate_stop_words.py
index e0dc801ca92..31603eb92ed 100644
--- a/src/mongo/db/fts/generate_stop_words.py
+++ b/src/mongo/db/fts/generate_stop_words.py
@@ -1,12 +1,6 @@
import sys
def generate( header, source, language_files ):
- print( "header: %s" % header )
- print( "source: %s" % source )
- print( "language_files:" )
- for x in language_files:
- print( "\t%s" % x )
-
out = open( header, "wb" )
out.write( """
#pragma once