Skip to content

Commit bec21e6

Browse files
committed
Turn off print statements
1 parent 2f380a7 commit bec21e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mapscript/python/tests/cases/thread_test.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
def draw_map(name, save=0):
3535

36-
print("making map in thread %s" % (name))
36+
# print("making map in thread %s" % (name))
3737
mo = mapscript.mapObj(TESTMAPFILE)
3838
im = mo.draw()
3939
if save:
@@ -42,7 +42,7 @@ def draw_map(name, save=0):
4242

4343
def trigger_exception(name):
4444

45-
print("triggering exception in thread %s" % (name))
45+
# print("triggering exception in thread %s" % (name))
4646
mo = mapscript.mapObj(TESTMAPFILE)
4747
try:
4848
mo.setExtent(1, 50, -1, 51)
@@ -97,7 +97,7 @@ def testExceptionContainmentMultiThreads(self):
9797

9898
def draw_map_wfs(name, save=0):
9999

100-
print("making map in thread %s" % (name))
100+
# print("making map in thread %s" % (name))
101101
mo = mapscript.mapObj(TESTMAPFILE)
102102

103103
# WFS layer
@@ -145,7 +145,7 @@ def draw_map_wfs(name, save=0):
145145

146146
def draw_map_wms(name, save=0):
147147

148-
print("making map in thread %s" % (name))
148+
# print("making map in thread %s" % (name))
149149
mo = mapscript.mapObj(TESTMAPFILE)
150150
# WFS layer
151151
lo = mapscript.layerObj()

0 commit comments

Comments
 (0)