[issue30582] Incorrect propagation in logging.wheb creating lighters in a certain order

2017-06-06 Thread Vinay Sajip
Vinay Sajip added the comment: You haven't clearly stated what you expect to happen vs. what happens. I don't believe there is a bug here: $ python3.6 Python 3.6.1+ (heads/3.6:2ee91c8, May 28 2017, 14:14:12) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for mor

[issue30582] Incorrect propagation in logging.wheb creating lighters in a certain order

2017-06-06 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue30582] Incorrect propagation in logging.wheb creating lighters in a certain order

2017-06-06 Thread Tal Kogan
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 -