From 4fca9b56c403d603ba190ff25ff40964a92b8ebb Mon Sep 17 00:00:00 2001 From: croneter Date: Fri, 9 Nov 2018 14:42:09 +0100 Subject: [PATCH] Less logging --- resources/lib/backgroundthread.py | 1 - 1 file changed, 1 deletion(-) diff --git a/resources/lib/backgroundthread.py b/resources/lib/backgroundthread.py index b4a44327..74029f95 100644 --- a/resources/lib/backgroundthread.py +++ b/resources/lib/backgroundthread.py @@ -206,7 +206,6 @@ class NonstoppingBackgroundWorker(BackgroundWorker): super(NonstoppingBackgroundWorker, self).__init__(queue, name) def _queueLoop(self): - LOG.debug('(%s): Active', self.name) while not self.aborted(): try: self._task = self._queue.get_nowait()