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 <rep...@bugs.python.org>
<http://bugs.python.org/issue30582>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to