diff options
Diffstat (limited to 'tools/checkbins')
-rwxr-xr-x | tools/checkbins/checkbins.py | 5 |
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() |