[issue11129] logging: allow multiple entries in qualname config

2017-07-24 Thread Craig McQueen
Changes by Craig McQueen : -- nosy: +cmcqueen1975 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue11129] logging: allow multiple entries in qualname config

2014-06-18 Thread Vinay Sajip
Vinay Sajip added the comment: > they really should share the logging configuration Well, that's easy enough to do - although there would be some duplication in the .ini file, it is not especially onerous. While I well understand the benefits of DRY, I still don't believe this is a very common

[issue11129] logging: allow multiple entries in qualname config

2014-06-18 Thread Dariusz Suchojad
Dariusz Suchojad added the comment: Hello friends, @vinay.sajip - the use case for this feature is actually something I come across fairly often. In an application I have dozens and hundreds of logger instances. However, they all fall into one of several loggers. Most of the instances are ob

[issue11129] logging: allow multiple entries in qualname config

2011-02-08 Thread Vinay Sajip
Vinay Sajip added the comment: The logging package will not parse any external file to get a dictionary. It's up to the application developer to provide a dictionary which will be used for configuration, so there's no security issue in the stdlib. -- type: security -> __

[issue11129] logging: allow multiple entries in qualname config

2011-02-08 Thread anatoly techtonik
Changes by anatoly techtonik : -- type: -> security ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue11129] logging: allow multiple entries in qualname config

2011-02-08 Thread anatoly techtonik
anatoly techtonik added the comment: And how do you intend to parse the dictionary stored in external file? Evaluating this script is unsafe. -- ___ Python tracker ___

[issue11129] logging: allow multiple entries in qualname config

2011-02-07 Thread Vinay Sajip
Vinay Sajip added the comment: See PEP 391. Documentation is at http://docs.python.org/library/logging.html#configuration as you might expect. -- ___ Python tracker ___ __

[issue11129] logging: allow multiple entries in qualname config

2011-02-07 Thread anatoly techtonik
anatoly techtonik added the comment: Where is this configuration? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue11129] logging: allow multiple entries in qualname config

2011-02-07 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11129] logging: allow multiple entries in qualname config

2011-02-07 Thread Vinay Sajip
Vinay Sajip added the comment: There's no particularly good use case for this. Plus, going forwards, dictionary-based configuration should be used (as it supports more logging features). -- nosy: +vinay.sajip resolution: -> wont fix status: open -> closed ___

[issue11129] logging: allow multiple entries in qualname config

2011-02-05 Thread anatoly techtonik
New submission from anatoly techtonik : When configuration is specified in external file, qualname attribute should allow several values. Maybe comma separated. -- messages: 127992 nosy: techtonik priority: normal severity: normal status: open title: logging: allow multiple entries in q