Log exit codes to log file

This commit is contained in:
Martijn Braam 2017-06-01 14:07:08 +02:00
parent 04aabd7d70
commit 2a39d9c091
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,8 @@ def _execute(loop, args, cmd, log_message, log, return_stdout, check=True):
if return_code != 0 and False:
if check:
raise RuntimeError("Command failed: \n" + protocol.error)
print('Program exited with: {}'.format(transport.get_returncode()))
args.logfd.write('Program exited with: {}\n'.format(transport.get_returncode()))
args.logfd.flush()
if return_stdout:
return protocol.output