Index: ammosreader/AmmosSocketSource.py
===================================================================
--- ammosreader/AmmosSocketSource.py	(revision 82f4e7d90bb14397a31d36a6c40c447d82909080)
+++ ammosreader/AmmosSocketSource.py	(revision 1fb706043b6f51ebe9695211b8c8214f879675c9)
@@ -12,5 +12,5 @@
     def read_bytes(self, bytes_to_read):
         byte_array = []
-
+        logger.info("Start reading bytes from socket")
         try:
             while len(b''.join(byte_array)) < bytes_to_read:
@@ -23,5 +23,7 @@
                 logger.info("Got %s bytes of %s remaining", len(new_bytes), bytes_to_read - len(b''.join(byte_array)))
                 byte_array.append(new_bytes)
+                print(byte_array)
         except TimeoutError:
+            logger.info("Timeout error while reading from socket")
             return None
         return b''.join(byte_array)
