//WIP V3
GQRX Changes - Sending output to devnull, except for error
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user