Disable spewing out debugging messages to the command line.

This commit is contained in:
jonnylamb
2007-09-07 15:22:26 +00:00
parent 3a5cf04f05
commit 6c8ffc91d8
2 changed files with 4 additions and 6 deletions
-2
View File
@@ -142,8 +142,6 @@ class ReportHandler(SundialHandler):
if ret != bongo.commonweb.HTTP_OK:
return ret
print et.tostring(self.multistatus_tag, pretty_print=True)
# Throw out the output.
req.content_type = 'text/xml; charset="utf-8"'
req.write("""<?xml version="1.0" encoding="utf-8" ?>""")
+4 -4
View File
@@ -99,10 +99,10 @@ class SundialPath(object):
# For debugging, print out headers_in, and the content.
#print req.headers_in
try:
print self.raw_input
except:
pass
#try:
# print self.raw_input
#except:
# pass
## Returns the handler for the request method.
# @param self The object pointer.