diff options
author | emkael <emkael@tlen.pl> | 2018-02-23 19:37:22 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2018-02-23 19:37:22 +0100 |
commit | 65ecd399ea82abdafd0a2471193a9c850b50db87 (patch) | |
tree | 6db61444df21058bf45e01145f83118d45705f83 | |
parent | e8a06741465702163977c638c5d11ff4419e7c75 (diff) |
Debug level of logging
-rw-r--r-- | playoff.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,8 @@ def main(): description='Generate play-off HTML for JFR Teamy tournaments') output_args = arg_parser.add_mutually_exclusive_group() output_args.add_argument('-v', '--verbose', action='store_true', + help='display info on STDERR') + output_args.add_argument('-vv', '--debug', action='store_true', help='display debug info on STDERR') output_args.add_argument('-q', '--quiet', action='store_true', help='suppress warnings on STDERR') |