From 28f696aca15a3393b5072c4f08134de3d6729f4b Mon Sep 17 00:00:00 2001
From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl>
Date: Fri, 13 Jan 2017 23:21:55 +0100
Subject: [PATCH] die printfs

---
 coolamqp/uplink/connection/recv_framer.py | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/coolamqp/uplink/connection/recv_framer.py b/coolamqp/uplink/connection/recv_framer.py
index 58aab46..7b2f3d9 100644
--- a/coolamqp/uplink/connection/recv_framer.py
+++ b/coolamqp/uplink/connection/recv_framer.py
@@ -70,7 +70,6 @@ class ReceivingFramer(object):
 
         self.total_data_len -= len(q)
         assert len(q) <= up_to, 'extracted %s but %s was requested' % (len(q), up_to)
-        print('Returning %s bytes - %s' % (len(q), repr(q)))
         return q
 
     def _statemachine(self):
@@ -84,8 +83,6 @@ class ReceivingFramer(object):
             if self.frame_type not in (FRAME_HEARTBEAT, FRAME_HEADER, FRAME_METHOD, FRAME_BODY):
                 raise ValueError('Invalid frame')
 
-            print('Rolling with', self.frame_type)
-
             return True
 
         # state rule 2
@@ -111,8 +108,6 @@ class ReceivingFramer(object):
 
             self.frame_channel, self.frame_size = struct.unpack('!HI',hdr)
 
-            print('Regarding', self.frame_channel, 'size', self.frame_size)
-
             return True
 
         # state rule 4
-- 
GitLab