From 49cab51fe897ec122ad31053db2e1b16723ba14f Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 10 Nov 2010 12:31:31 +0100 Subject: [PATCH] Remove leftover print statements in pika backend --- kombu/transport/pypika.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/kombu/transport/pypika.py b/kombu/transport/pypika.py index 0f3c3791..1cabf28d 100644 --- a/kombu/transport/pypika.py +++ b/kombu/transport/pypika.py @@ -65,8 +65,6 @@ class Channel(channel.Channel): callback=None, nowait=False): def _callback_decode(channel, method, header, body): - print("IN CALLBACK DECODE: %r" % ( - channel, method, header, body)) return callback((channel, method, header, body)) return channel.Channel.basic_consume(self, _callback_decode, @@ -86,7 +84,6 @@ class Channel(channel.Channel): def message_to_python(self, raw_message): """Convert encoded message body back to a Python value.""" - print("RAW MESSAGE: %r" % (raw_message, )) return self.Message(channel=self, amqp_message=raw_message) def basic_ack(self, delivery_tag):