[issue34199] Add support for delete logger in log module.

2021-06-12 Thread Юлий Бройде
Юлий Бройде <124...@gmail.com> added the comment: I have a similar scenario. I need to create a logger for each client of my system and than to delete them -- nosy: +124bit versions: +Python 3.9 -Python 3.8 ___ Python tracker

[issue34199] Add support for delete logger in log module.

2020-09-20 Thread Irit Katriel
Change by Irit Katriel : -- components: +Library (Lib) -2to3 (2.x to 3.x conversion tool) ___ Python tracker ___ ___ Python-bugs-lis

[issue34199] Add support for delete logger in log module.

2018-07-23 Thread Chetan kolhe
Chetan kolhe added the comment: Hi Loggers are static objects managed by the module itself. When you create one, it won't be removed until you leave the shell all logger instance is stored in this location. "Logger.manager.loggerDict" which is the dictionary. we can delete logger instance us

[issue34199] Add support for delete logger in log module.

2018-07-23 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This seems related : https://mail.python.org/pipermail/python-list/2011-November/615602.html -- ___ Python tracker ___ ___

[issue34199] Add support for delete logger in log module.

2018-07-23 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue34199] Add support for delete logger in log module.

2018-07-23 Thread Chetan kolhe
New submission from Chetan kolhe : Hi, Currently, there is no support for whether the logger object is present or not. when logging module imported in current namespace all logger object get imported. which uses the memory. Add the option explicitly to delete the logger object. e.g logging.de