Initial changes to handle GQRX process

This commit is contained in:
Logan Cusano
2022-04-01 00:46:34 -04:00
parent 5e6b6f02d9
commit 319de5cf42
4 changed files with 134 additions and 9 deletions

View File

@@ -81,7 +81,7 @@ class OP25Handler(threading.Thread):
while self.OP25Proc.poll() is None:
# Terminate the process every 5 seconds
if seconds_waited % 5 == 0:
self.logger.debug("Terminating OP25")
self.logger.info("Terminating OP25")
self.OP25Proc.terminate()
time.sleep(1)
self.logger.debug(f"Waited {seconds_waited} seconds")