Commit ddb65f27 authored by Antony Lee's avatar Antony Lee

Allow passing more than two -v's to cygdb.

parent 27916f4a
...@@ -126,7 +126,7 @@ def main(path_to_debug_info=None, gdb_argv=None, no_import=False): ...@@ -126,7 +126,7 @@ def main(path_to_debug_info=None, gdb_argv=None, no_import=False):
logging_level = logging.WARN logging_level = logging.WARN
if options.verbosity == 1: if options.verbosity == 1:
logging_level = logging.INFO logging_level = logging.INFO
if options.verbosity == 2: if options.verbosity >= 2:
logging_level = logging.DEBUG logging_level = logging.DEBUG
logging.basicConfig(level=logging_level) logging.basicConfig(level=logging_level)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment