From 59e5bb8ed2000b1652b121d3cf8bcfdd5e1cdd40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Fri, 22 Nov 2019 11:03:05 +0100 Subject: [PATCH] improved logging --- scripts/phabtalk/apply_patch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/phabtalk/apply_patch.py b/scripts/phabtalk/apply_patch.py index 3ac0d79..2a9d7c0 100755 --- a/scripts/phabtalk/apply_patch.py +++ b/scripts/phabtalk/apply_patch.py @@ -68,6 +68,7 @@ class ApplyPatch: try: with open(self.diff_json_path,'w') as json_file: json.dump(diff.response, json_file, sort_keys=True, indent=4) + print('Wrote diff details to "{}".'.format(self.diff_json_path)) except Exception: print('WARNING: could not write build/diff.json log file') self.git_hash = diff['sourceControlBaseRevision']