]> git.saurik.com Git - apple/xnu.git/blobdiff - tools/lldbmacros/usertaskdebugging/interface.py
xnu-7195.101.1.tar.gz
[apple/xnu.git] / tools / lldbmacros / usertaskdebugging / interface.py
index 590541f4bb82910737827a209ea0584cf0c937ee..900bc18aa7fcc584b3303b01d16e45b3d38e9f55 100755 (executable)
@@ -24,14 +24,14 @@ class Interface(object):
             ra,wa,ea = select.select([self.socket], [], [], 30)
             if not ra:
                 num_retries -= 1
-                logging.error("select returned empty list")
+                logging.warning("timeout: select returned empty list. retrying..")
                 continue
             self.connection, addr = self.socket.accept()
             logging.info("Connected to client from %s" % str(addr))
             return True
         logging.error("Failed to connect. Exiting after multiple attempts.")
         return False
-    
+
     def read(self):
         if self.isblocking:
             #BUG TODO make this unblocking soon