[issue34356] Add support for args and kwargs in logging.conf

2018-08-14 Thread Vinay Sajip
Vinay Sajip added the comment: There aren't any changes planned to the fileConfig code, other than bug fixes. If you need improved functionality, you can use dictConfig, which already supports improved configuration features when compared to fileConfig. The fileConfig API was present when th

[issue34356] Add support for args and kwargs in logging.conf

2018-08-13 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Adding Vinay for his thoughts on this. Also Python 3.4 and 3.5 are in security fixes only mode and can be removed. Thanks -- nosy: +vinay.sajip, xtreak ___ Python tracker

[issue34356] Add support for args and kwargs in logging.conf

2018-08-13 Thread Xavier Hardy
Change by Xavier Hardy : -- keywords: +patch pull_requests: +8234 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue34356] Add support for args and kwargs in logging.conf

2018-08-08 Thread Xavier Hardy
New submission from Xavier Hardy : The behavior of formatters and handlers in logging.conf files is inconsistent. With handlers, it is possible to add custom (keyword and non-keyword) arguments, but it is not possible for formatters (only class, format, datefmt, style). https://github.com/py