[issue22482] logging: fileConfig doesn't support formatter styles

2014-10-06 Thread Vinay Sajip
Changes by Vinay Sajip : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue22482] logging: fileConfig doesn't support formatter styles

2014-09-24 Thread Vinay Sajip
Vinay Sajip added the comment: While fileConfig() is not deprecated, I'm not planning to enhance it, as the newer dictConfig() API offers better functionality overall. With dictConfig(), you do have support for alternative formatting styles. -- ___

[issue22482] logging: fileConfig doesn't support formatter styles

2014-09-24 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue22482] logging: fileConfig doesn't support formatter styles

2014-09-24 Thread Dom Zippilli
New submission from Dom Zippilli: In the logging module's config.py, see the _create_formatters(cp) method used by the fileConfig() method. Note that it pulls "format" and "datefmt" and submits these in the formatter constructor: f = c(fs, dfs) However, the Formatter constructor has a third a