From d9e391e90a73da83781fb1bf8c9c239f47612b2f Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Wed, 28 Apr 2021 21:25:00 -0500 Subject: [PATCH] g13gui: Remove some console spam --- g13gui/g13gui/g13d.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/g13gui/g13gui/g13d.py b/g13gui/g13gui/g13d.py index 073100f..01483a2 100644 --- a/g13gui/g13gui/g13d.py +++ b/g13gui/g13gui/g13d.py @@ -60,9 +60,7 @@ class G13DWorker(threading.Thread): self._outfp = None self._infp = None self._connected = False - print("g13d is not running, or not listening on %s" % (G13D_IN_FIFO)) self._mainWindow.emit("daemon-connection-changed", False) - print("Sleeping for 10 seconds...") time.sleep(10) except Exception as err: @@ -71,12 +69,10 @@ class G13DWorker(threading.Thread): self._connected = False print("Unknown exception occurred: %s %s" % (type(err), err)) self._mainWindow.emit("daemon-connection-changed", False) - print("Sleeping for 10 seconds...") time.sleep(10) else: self._mainWindow.emit("daemon-connection-changed", True) - print("Connected to g13d") self._connected = True def run(self):