From 92990c94a2babfa19a4634f478e79b7784f4429e Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 1 Mar 2017 16:12:35 -0500 Subject: [PATCH] Make this a little more quiet. Otherwise, it logs for *every single koji build* that comes across the bus. Too noisy to see what the MBS is actually doing. --- module_build_service/scheduler/consumer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module_build_service/scheduler/consumer.py b/module_build_service/scheduler/consumer.py index 8c6103c5..cbde263e 100644 --- a/module_build_service/scheduler/consumer.py +++ b/module_build_service/scheduler/consumer.py @@ -183,9 +183,9 @@ class MBSConsumer(fedmsg.consumers.FedmsgConsumer): if handler is self.NO_OP: log.debug("Handler is NO_OP: %s" % idx) else: - log.info("Calling %s" % idx) + log.debug("Calling %s" % idx) further_work = handler(conf, session, msg) or [] - log.info("Done with %s" % idx) + log.debug("Done with %s" % idx) # Handlers can *optionally* return a list of fake messages that # should be re-inserted back into the main work queue. We can use