This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Yuta Okamoto
Recipients Yuta Okamoto, docs@python
Date 2020-03-09.15:59:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1583769574.27.0.968534931359.issue39914@roundup.psfhosted.org>
In-reply-to
Content
I noticed that Configurators in logging.config module accepts '.' (dot) as a key to fill attributes for filters, formatters, and handlers directly like the following:

handlers:
    syslog:
        class: logging.handlers.SysLogHandler
        .:
            ident: 'app-name: '

https://github.com/python/cpython/blob/46abfc1416ff8e450999611ef8f231ff871ab133/Lib/logging/config.py#L742

But it seems this functionality is not documented in https://docs.python.org/3/library/logging.config.html
History
Date User Action Args
2020-03-09 15:59:34Yuta Okamotosetrecipients: + Yuta Okamoto, docs@python
2020-03-09 15:59:34Yuta Okamotosetmessageid: <1583769574.27.0.968534931359.issue39914@roundup.psfhosted.org>
2020-03-09 15:59:34Yuta Okamotolinkissue39914 messages
2020-03-09 15:59:34Yuta Okamotocreate