summaryrefslogtreecommitdiff
path: root/Cython/Debugger
diff options
context:
space:
mode:
authorAntony Lee <anntzer.lee@gmail.com>2015-09-05 14:47:28 -0700
committerAntony Lee <anntzer.lee@gmail.com>2015-09-05 14:47:28 -0700
commitddb65f27c8ebd636606afb6d49a92891bca0a89f (patch)
tree64f0270b841d92d392419b1dc724f2d988fbfcc9 /Cython/Debugger
parent27916f4ade2c24c7a4ffcad7dbe9adffd03a567e (diff)
downloadcython-ddb65f27c8ebd636606afb6d49a92891bca0a89f.tar.gz
Allow passing more than two -v's to cygdb.
Diffstat (limited to 'Cython/Debugger')
-rw-r--r--Cython/Debugger/Cygdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Debugger/Cygdb.py b/Cython/Debugger/Cygdb.py
index e0903ffe8..d18364a0f 100644
--- a/Cython/Debugger/Cygdb.py
+++ b/Cython/Debugger/Cygdb.py
@@ -126,7 +126,7 @@ def main(path_to_debug_info=None, gdb_argv=None, no_import=False):
logging_level = logging.WARN
if options.verbosity == 1:
logging_level = logging.INFO
- if options.verbosity == 2:
+ if options.verbosity >= 2:
logging_level = logging.DEBUG
logging.basicConfig(level=logging_level)