From 5a66d34377bdfc8956b6563ae7a10aa980b6bee1 Mon Sep 17 00:00:00 2001 From: Thomas Maddox Date: Fri, 31 May 2013 13:49:50 -0500 Subject: [PATCH] removed prints to console --- reports/error_details.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/reports/error_details.py b/reports/error_details.py index b282f0f..1fd883d 100644 --- a/reports/error_details.py +++ b/reports/error_details.py @@ -317,12 +317,6 @@ if __name__ == '__main__': cause_key = (key, failure_type) causes[cause_key] = causes.get(cause_key, 0) + 1 - # print exception counts in report metadata - print json.dumps(report[0]['exception_counts'], indent=4) - - # print event counts in report metadata - print json.dumps(report[0]['event_counts'], indent=4) - # Assign values to store in DB values = {'json': json.dumps(report), 'created': dt.dt_to_decimal(datetime.datetime.utcnow()),