From 94723614f52a7080c52159d788f7bb562ce57aad Mon Sep 17 00:00:00 2001 From: Matt Prahl Date: Wed, 21 Sep 2016 10:17:20 -0400 Subject: [PATCH] Remove the use of pprint in main.run function --- rida/scheduler/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rida/scheduler/main.py b/rida/scheduler/main.py index 171a9463..47e6558e 100644 --- a/rida/scheduler/main.py +++ b/rida/scheduler/main.py @@ -32,7 +32,6 @@ proper scheduling component builds in the supported build systems. import inspect import operator import os -import pprint import threading import time import six.moves.queue as queue @@ -133,7 +132,7 @@ class MessageWorker(threading.Thread): self.process_message(msg) except Exception: log.exception("Failed while handling %r" % msg.msg_id) - log.info(pprint.pformat(msg)) + log.info(msg) def process_message(self, msg): log.debug('Received a message with an ID of "{0}" and of type "{1}"'