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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py

Issue 2285343002: In webkitpy/common/net/git_cl.py, print rather than log "waiting" message. (Closed)
Patch Set: Created 4 years, 4 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
index c6e3a73ea46fae833839e3ece614d2fa8056c24b..d091f40bff03c22c3f12ff3e0e7fed6ec7efb115 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
@@ -8,11 +8,8 @@ The git-cl tool is responsible for communicating with Rietveld, Gerrit,
and Buildbucket to manage changelists and try jobs associated with them.
"""
-import logging
import time
-_log = logging.getLogger(__name__)
-
class GitCL(object):
@@ -37,7 +34,7 @@ class GitCL(object):
# TODO(qyearsley): Add a time-out to avoid infinite looping.
while True:
time.sleep(poll_delay_seconds)
- _log.info('Waiting for results.')
+ print 'Waiting for results.'
out = self.run(['try-results'])
results = self.parse_try_job_results(out)
if results.get('Started') or results.get('Scheduled'):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698