Just print a warning when reading from the controller returns 0 bytes
diff --git a/src/python/oftest/controller.py b/src/python/oftest/controller.py
index 786572d..debff35 100644
--- a/src/python/oftest/controller.py
+++ b/src/python/oftest/controller.py
@@ -287,8 +287,7 @@
                 return False
 
             if len(pkt) == 0:
-                self.logger.info("zero-len pkt in")
-                return True
+                self.logger.warning("Zero-length switch read")
 
             self._pkt_handle(pkt)
         else: