add flag to show verbose output and log output under one name #223
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rationale
Normalize all log outputs to be under one name instead of module specific loggers and add
--debug
flag for more verbose output. This is intended to be a fix for #206 .Changes
INFO
instead ofDEBUG
--debug
flag to dynamically set level toDEBUG
--debug
flag is set, update the handlers to have their levels set toDEBUG
as a simplelogger.setLevel(logging.DEBUG)
only sets it for the logger and not for the handlers. This is akin to what thegetLogger
function fromzimscraperlib
does. After all, it is the handlers that handle output and not thelogger
object.