OP-2414 - added log processing queue

This commit is contained in:
Petr Kalis 2022-02-07 16:59:18 +01:00
parent f29b8e7158
commit bdd0a91980

View file

@ -80,6 +80,11 @@ class StdOutBroker:
self._catch_std_outputs()
self._connect_to_tray()
loop_timer = QtCore.QTimer()
loop_timer.setInterval(200)
loop_timer.timeout.connect(self._process_queue)
self.loop_timer = loop_timer
@property
def websocket_server_is_running(self):
if self.websocket_server is not None: