From ba0f07ffb4a130e71920843fe39ee4527869bd48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Thu, 24 Oct 2019 09:41:19 -0700 Subject: [PATCH] added status output --- scripts/phabtalk/phabtalk.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/phabtalk/phabtalk.py b/scripts/phabtalk/phabtalk.py index 022caae..d6a8a8c 100755 --- a/scripts/phabtalk/phabtalk.py +++ b/scripts/phabtalk/phabtalk.py @@ -58,6 +58,8 @@ class PhabTalk: def _comment_on_diff(self, diff: str, text: str): """Add a comment to a differential based on the diff_id""" + print('Sending comment to diff {}:'.format(diff)) + print(text) self._comment_on_revision(self._get_revision_id(diff), text) def _comment_on_revision(self, revision: str, text: str): @@ -159,6 +161,7 @@ class PhabTalk: test_results = self._compute_test_results(test_result_file) self._report_test_results(ph_id, test_results) self._comment_on_diff_from_file(diff_id, comment_file, test_results) + print('reporting completed.') def main():