[New-bugs-announce] [issue30582] Incorrect propagation in logging.wheb creating lighters in a certain order

Tal Kogan report at bugs.python.org
Tue Jun 6 09:53:30 EDT 2017


New submission from Tal Kogan:

Creating a logger at level 3 and below and then creating a logger at level 1 will not correctly set the parent logger for the 3rd level logger. 

import logging
log_c = logging.getLogger('a.b.c')
log_a = logging.getLogger('a')
log_c.error("spam") # Doesn't showa

----------
components: Library (Lib)
messages: 295262
nosy: Tal Kogan
priority: normal
severity: normal
status: open
title: Incorrect propagation in logging.wheb creating lighters in a certain order
type: behavior
versions: Python 3.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue30582>
_______________________________________


More information about the New-bugs-announce mailing list