Closed mattbrictson closed 8 years ago
Calling basicConfig has no effect the second time (see docs), so this meant that basicConfig(level=logging.DEBUG) was not actually enabling the DEBUG level.
basicConfig
basicConfig(level=logging.DEBUG)
Solve this by using getLogger() to explicitly get the root logger and set its level instead.
getLogger()
Nice catch! Thanks for the fix :)
Calling
basicConfig
has no effect the second time (see docs), so this meant thatbasicConfig(level=logging.DEBUG)
was not actually enabling the DEBUG level.Solve this by using
getLogger()
to explicitly get the root logger and set its level instead.