Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Unified Diff: rietveld.py

Issue 6015008: Make many operations quieter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Rebase against trunk Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pending_manager.py ('k') | tests/checkout_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rietveld.py
diff --git a/rietveld.py b/rietveld.py
index 7adf2d40ccf0f1a1b9ce484b47ffd386cd06f9de..86728afb6b1c4b8a122bd804bfb2dc6d93b7aacf 100644
--- a/rietveld.py
+++ b/rietveld.py
@@ -44,6 +44,7 @@ class Rietveld(object):
def close_issue(self, issue):
"""Closes the Rietveld issue for this changelist."""
+ logging.info('closing issue %s' % issue)
self.post("/%d/close" % issue, [('xsrf_token', self.xsrf_token())])
def get_description(self, issue):
@@ -61,6 +62,7 @@ class Rietveld(object):
('xsrf_token', self.xsrf_token())])
def add_comment(self, issue, message):
+ logging.info('issue %s; comment: %s' % (issue, message))
return self.post('/%s/publish' % issue, [
('xsrf_token', self.xsrf_token()),
('message', message),
« no previous file with comments | « pending_manager.py ('k') | tests/checkout_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698