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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py

Issue 2438393002: Change logging of specific tests and builds to rebaseline to debug level. (Closed)
Patch Set: print each build on a separate line Created 4 years, 2 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 | third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py
index 74cdd52504e672cac908cfea45de9dd8d5cf062b..e3b3b4e3f294c73534324c3b2158268ba8505f56 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl.py
@@ -190,7 +190,8 @@ class RebaselineCL(AbstractParallelRebaselineCommand):
if not test_prefix_list:
_log.info('No tests to rebaseline; exiting.')
return
- _log.info('Tests to rebaseline:')
+ _log.debug('Tests to rebaseline:')
for test, builds in test_prefix_list.iteritems():
- builds_str = ', '.join(sorted('%s (%s)' % (b.builder_name, b.build_number) for b in builds))
- _log.info(' %s: %s', test, builds_str)
+ _log.debug(' %s:', test)
+ for build in sorted(builds):
+ _log.debug(' %s', build)
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline_cl_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698