mirror of
https://github.com/python/cpython.git
synced 2025-10-10 00:43:41 +00:00
gh-90195: Unset logger disabled flag when configuring it. (GH-96530)
This commit is contained in:
parent
e5823bf9b5
commit
ac4ddab405
2 changed files with 30 additions and 0 deletions
|
@ -869,6 +869,7 @@ class DictConfigurator(BaseConfigurator):
|
|||
"""Configure a non-root logger from a dictionary."""
|
||||
logger = logging.getLogger(name)
|
||||
self.common_logger_config(logger, config, incremental)
|
||||
logger.disabled = False
|
||||
propagate = config.get('propagate', None)
|
||||
if propagate is not None:
|
||||
logger.propagate = propagate
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue