diff --git a/coolamqp/framing/compilation/content_property.py b/coolamqp/framing/compilation/content_property.py
index 4cdb877e565c8c451fea1bdb394ea442f5ef6879..3ebb60e5d8cdee13ed1990adb707e7ae102fcc49 100644
--- a/coolamqp/framing/compilation/content_property.py
+++ b/coolamqp/framing/compilation/content_property.py
@@ -117,7 +117,6 @@ def _compile_particular_content_property_list_class(zpf, fields):
 
 def compile_particular_content_property_list_class(zpf, fields):
     q = _compile_particular_content_property_list_class(zpf, fields)
-    logger.debug('Compiling\n%s', q)
     loc = {}
     exec(q, globals(), loc)
     return loc['ParticularContentTypeList']
diff --git a/coolamqp/uplink/connection/connection.py b/coolamqp/uplink/connection/connection.py
index c192512001eca4b0a52bc29586cb1e4616ff2d96..6d5b45c7ed84001edf778637578464e93e8b906e 100644
--- a/coolamqp/uplink/connection/connection.py
+++ b/coolamqp/uplink/connection/connection.py
@@ -84,6 +84,8 @@ class Connection(object):
 
     def on_connected(self):
         """Called by handshaker upon reception of final connection.open-ok"""
+        logger.info('Connection ready.')
+
         self.state = ST_ONLINE
 
         while len(self.callables_on_connected) > 0:
@@ -107,6 +109,8 @@ class Connection(object):
             else:
                 break
 
+        logger.info('Connected to broker, authentication in progress')
+
         sock.settimeout(0)
         sock.send(b'AMQP\x00\x00\x09\x01')
 
@@ -131,6 +135,8 @@ class Connection(object):
         and second time from ListenerThread when socket is disposed of
         Therefore we need to make sure callbacks are called EXACTLY once
         """
+        logger.info('Connection lost')
+
         self.state = ST_OFFLINE # Update state
 
         watchlists = [self.watches[channel] for channel in self.watches]
@@ -158,6 +164,8 @@ class Connection(object):
 
         if isinstance(payload, ConnectionClose):
             self.send([AMQPMethodFrame(0, ConnectionCloseOk())])
+            logger.info(u'Broker closed our connection - code %s reason %s', payload.reply_code, payload.reply_text.tobytes().decode('utf8'))
+
         elif isinstance(payload, ConnectionCloseOk):
             self.send(None)