Log at the exception level, not at the library level for rsync

This commit is contained in:
Eric Torres
2019-04-18 21:46:33 -07:00
parent 3fb3cbede8
commit afef3ee711
2 changed files with 3 additions and 7 deletions

View File

@ -167,6 +167,7 @@ if __name__ == "__main__":
except CalledProcessError as e:
syslog.critical("Backup process failed")
syslog.critical(f"Failing command: {e.cmd}")
syslog.critical(e.stderr)
exit(e.returncode)
if args.run_post_sync: