core: set _v and _vv to True in enable_debug_logging().
router.enable_debug() has been broken for ages.
This commit is contained in:
parent
7320c542df
commit
11c2e4ab3e
|
@ -273,6 +273,9 @@ class PidfulStreamHandler(logging.StreamHandler):
|
||||||
|
|
||||||
|
|
||||||
def enable_debug_logging():
|
def enable_debug_logging():
|
||||||
|
global _v, _vv
|
||||||
|
_v = True
|
||||||
|
_vv = True
|
||||||
root = logging.getLogger()
|
root = logging.getLogger()
|
||||||
root.setLevel(logging.DEBUG)
|
root.setLevel(logging.DEBUG)
|
||||||
IOLOG.setLevel(logging.DEBUG)
|
IOLOG.setLevel(logging.DEBUG)
|
||||||
|
|
Loading…
Reference in New Issue