GQRX Changes
- Sending output to devnull, except for error
This commit is contained in:
Logan Cusano
2022-04-09 04:32:12 -04:00
parent cccd974adc
commit b7f0939787

View File

@@ -71,7 +71,8 @@ class OP25Handler(threading.Thread):
self.logger.debug(f"OP25 Keyword Args: {p25_kwargs}")
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, cwd=self.OP25Dir)
self.OP25Proc = subprocess.Popen(p25_kwargs, executable=self.OP25EXE, shell=False, cwd=self.OP25Dir,
stdin=subprocess.DEVNULL, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
def close_op25(self):
self.logger.info(f"Closing OP25")