[issue22130] Logging fileConfig behavior does not match documentation

2014-08-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 17e1af9ad66c by Vinay Sajip in branch '2.7': Issue #22130: Corrected fileConfig() documentation. http://hg.python.org/cpython/rev/17e1af9ad66c New changeset 734d5ab0ce6a by Vinay Sajip in branch '3.4': Issue #22130: Corrected fileConfig()

[issue22130] Logging fileConfig behavior does not match documentation

2014-08-05 Thread Brendan Meeder
Brendan Meeder added the comment: Hi there, I appreciate the change to documentation but still find the updated wording misleading. Existing loggers are not left enabled, implying that existing loggers that were disabled before the call to fileConfig remain disabled after the call to

[issue22130] Logging fileConfig behavior does not match documentation

2014-08-05 Thread Vinay Sajip
Vinay Sajip added the comment: Actually, 'left enabled' means that they are left in an enabled state when the fileConfig() code is finished with them. This is unconnected with whatever state they might have had before the call to fileConfig(). I'm not sure it's worth belabouring the point too

[issue22130] Logging fileConfig behavior does not match documentation

2014-08-04 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- nosy: +vinay.sajip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22130 ___ ___

[issue22130] Logging fileConfig behavior does not match documentation

2014-08-03 Thread Brendan Meeder
New submission from Brendan Meeder: The 2.7.8 documentation for fileConfig says that for disable_existing_loggers: If specified as False, loggers which exist when this call is made are left alone. This is actually not the case- they are enabled after the call to fileConfig. In particular,