From 6c8ffc91d81d358eb46ddbb880cb192023f2e0e4 Mon Sep 17 00:00:00 2001 From: jonnylamb Date: Fri, 7 Sep 2007 15:22:26 +0000 Subject: [PATCH] Disable spewing out debugging messages to the command line. --- src/www/bongo/sundial/ReportView.py | 2 -- src/www/bongo/sundial/SundialPath.py | 8 ++++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/www/bongo/sundial/ReportView.py b/src/www/bongo/sundial/ReportView.py index b7e250b..7e07e3a 100644 --- a/src/www/bongo/sundial/ReportView.py +++ b/src/www/bongo/sundial/ReportView.py @@ -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("""""") diff --git a/src/www/bongo/sundial/SundialPath.py b/src/www/bongo/sundial/SundialPath.py index b74c5dc..00edb5d 100644 --- a/src/www/bongo/sundial/SundialPath.py +++ b/src/www/bongo/sundial/SundialPath.py @@ -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.