[issue33423] [logging] Improve consistency of logger mechanism.

2018-06-08 Thread Vinay Sajip
Vinay Sajip added the comment: You can't make the proposed change (removing call to basicConfig() from logging.debug() etc.) without breaking backwards compatibility. The inconsistency is just a consequence of how you choose to mix and match calls to the module-level convenience functions

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Daehee Kim
Daehee Kim added the comment: Oh! Thank you for your kindness. :) -- ___ Python tracker ___

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Emanuel Barry
Emanuel Barry added the comment: You don't have access to this feature, so I've deleted the message for you :) -- nosy: +ebarry ___ Python tracker

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Emanuel Barry
Change by Emanuel Barry : -- Removed message: https://bugs.python.org/msg316153 ___ Python tracker ___

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Daehee Kim
Daehee Kim added the comment: Please, ignore first one, `msg316153` It has duplicated message so I rewrote `msg316154`. I could not find delete or edit messages menu. -- ___ Python tracker

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Daehee Kim
Daehee Kim added the comment: There's a proposal for a fix inconsistency of logger mechanism. See below. Example 1. --- import logging app_logger = logging.getLogger('app') app_logger.error('foo') logging.error('goo')

[issue33423] [logging] Improve consistency of logger mechanism.

2018-05-03 Thread Daehee Kim
New submission from Daehee Kim : There's a proposal for a fix inconsistency of logger mechanism. See below. Example 1. --- import logging app_logger = logging.getLogger('app') app_logger.error('foo') logging.error('goo')