only configure the requested logger, not the root logger#2746
Merged
pplantinga merged 8 commits intospeechbrain:developfrom Jan 7, 2025
Merged
only configure the requested logger, not the root logger#2746pplantinga merged 8 commits intospeechbrain:developfrom
pplantinga merged 8 commits intospeechbrain:developfrom
Conversation
Contributor
Author
|
This PR also changes the type of the log level setting. Currently, it uses the integer-based level. However, when the env var |
pplantinga
reviewed
Jan 7, 2025
pplantinga
approved these changes
Jan 7, 2025
Collaborator
pplantinga
left a comment
There was a problem hiding this comment.
Nice catch, this is a good fix. Very minor comment is the added info in the docstring but can be merged just fine without it.
…et logged to the log file. Console remains at INFO
Contributor
Author
|
Thank you for the review! Glad to get this merged |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this PR do?
#2682 introduced new log handling.
get_logger()was callinglogging.basicConfig()and setting the log-level for the root logger which interfered with user-configured logging.This PR changes it so that
get_logger()only sets the log level for the requested logger usingLogger.setLevel()Breaking changes:
default_levelofsetup_logging()now expects a string, not an integerBefore submitting
PR review
Reviewer checklist