Log wk.exe.run_program result in debug mode

This commit is contained in:
2Shirt 2020-01-22 23:07:03 -07:00
parent 458f637d2c
commit 78e28bb6d2
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -194,9 +194,11 @@ def run_program(cmd, check=True, pipe=True, shell=False, **kwargs):
pipe=pipe,
shell=shell,
**kwargs)
proc = subprocess.run(**cmd_kwargs)
LOG.debug('proc: %s', proc)
# Ready to run program
return subprocess.run(**cmd_kwargs)
# Done
return proc
def start_thread(function, args=None, daemon=True):