core: set _v and _vv to True in enable_debug_logging().

router.enable_debug() has been broken for ages.
pull/255/head
David Wilson 6 years ago
parent 7320c542df
commit 11c2e4ab3e

@ -273,6 +273,9 @@ class PidfulStreamHandler(logging.StreamHandler):
def enable_debug_logging():
global _v, _vv
_v = True
_vv = True
root = logging.getLogger()
root.setLevel(logging.DEBUG)
IOLOG.setLevel(logging.DEBUG)

Loading…
Cancel
Save