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 vinay.sajip
Recipients Tal Kogan, vinay.sajip
Date 2017-06-06.15:43:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1496763833.84.0.503992615164.issue30582@psf.upfronthosting.co.za>
In-reply-to
Content
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 more information.
>>> import logging
>>> log_c = logging.getLogger('a.b.c')
>>> log_a = logging.getLogger('a')
>>> log_c.error('spam')
spam
>>> 

This behaviour is as expected.
History
Date User Action Args
2017-06-06 15:43:53vinay.sajipsetrecipients: + vinay.sajip, Tal Kogan
2017-06-06 15:43:53vinay.sajipsetmessageid: <1496763833.84.0.503992615164.issue30582@psf.upfronthosting.co.za>
2017-06-06 15:43:53vinay.sajiplinkissue30582 messages
2017-06-06 15:43:53vinay.sajipcreate