summaryrefslogtreecommitdiffstats
path: root/tools/checkbins
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkbins')
-rwxr-xr-xtools/checkbins/checkbins.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/checkbins/checkbins.py b/tools/checkbins/checkbins.py
index d08e4e5..5d8ce53 100755
--- a/tools/checkbins/checkbins.py
+++ b/tools/checkbins/checkbins.py
@@ -60,8 +60,11 @@ def main(options, args):
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()