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

Unified Diff: tools/checkbins/checkbins.py

Issue 342115: Temporarily make checkbins.py print debugging information.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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: tools/checkbins/checkbins.py
===================================================================
--- tools/checkbins/checkbins.py (revision 30852)
+++ tools/checkbins/checkbins.py (working copy)
@@ -60,8 +60,11 @@
if __name__ == '__main__':
usage = "Usage: %prog [options] DIRECTORY"
option_parser = optparse.OptionParser(usage=usage)
+
+ # TODO(scherkus): change the default back to False once I've verified this
+ # tool actually does something on the bots.
option_parser.add_option("-v", "--verbose", action="store_true",
- default=False, help="Print debug logging")
+ default=True, help="Print debug logging")
options, args = option_parser.parse_args()
if not args:
option_parser.print_help()
« 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