diff --git a/pyinfra/queue/queue_manager/pika_queue_manager.py b/pyinfra/queue/queue_manager/pika_queue_manager.py index dfb620a..5cde19f 100644 --- a/pyinfra/queue/queue_manager/pika_queue_manager.py +++ b/pyinfra/queue/queue_manager/pika_queue_manager.py @@ -139,7 +139,6 @@ class PikaQueueManager(QueueManager): logger.info(f"Basic consuming with callback {visitor.callback.__name__}") def callback(channel, frame, properties, body): - print(channel, frame, properties, body) message = (frame, properties, body) return self.publish_response(message, visitor)