This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Tal Kogan
Recipients Tal Kogan
Date 2017-06-06.13:53:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496757210.37.0.331930317615.issue30582@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2017-06-06 13:53:30Tal Kogansetrecipients: + Tal Kogan
2017-06-06 13:53:30Tal Kogansetmessageid: <1496757210.37.0.331930317615.issue30582@psf.upfronthosting.co.za>
2017-06-06 13:53:30Tal Koganlinkissue30582 messages
2017-06-06 13:53:30Tal Kogancreate