diff options
author | Tamaki Nishino <otamachan@gmail.com> | 2017-10-20 21:50:08 +0900 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-11-12 19:05:37 +0100 |
commit | 5dd8afda3ec83d245a4708638a40ca267d0dfed0 (patch) | |
tree | 01bee8ce3533eda3b30d3a49bed1e450491ae111 /systemd/journal.py | |
parent | 397dec74114dcdc72728cbe3fe8fa6b982b44f1b (diff) | |
download | python-systemd-5dd8afda3ec83d245a4708638a40ca267d0dfed0.tar.gz |
journal: allow JournalHandler constructor to be called with args in a positional param
This change enables to add extra fields to JournalHandler in a
configuration file loaded by `logging.config.fileConfig`, which only allows positional
parameters:
class=systemd.journal.JournalHandler
args={'level': INFO, 'SYSLOG_IDENTIFIER': 'my-cool-app'}
[zj: originally the patch added a new positional parameter to
__init__(), but that is not backwards compatible. So I added a new
classmethod to allow the positional parameters to be passed.]
Diffstat (limited to 'systemd/journal.py')
-rw-r--r-- | systemd/journal.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/systemd/journal.py b/systemd/journal.py index 4168dec..64502ce 100644 --- a/systemd/journal.py +++ b/systemd/journal.py @@ -565,6 +565,20 @@ class JournalHandler(_logging.Handler): self.send = sender_function self._extra = kwargs + @classmethod + def with_args(cls, config=None): + """Create a JournalHandler with a configuration dictionary + + This creates a JournalHandler instance, but accepts the parameters through + a dictionary that can be specified as a positional argument. This is useful + in contexts like logging.config.fileConfig, where the syntax does not allow + for positional arguments. + + >>> JournalHandler.with_args({'SYSLOG_IDENTIFIER':'my-cool-app'}) + <...JournalHandler ...> + """ + return cls(**(config or {})) + def emit(self, record): """Write `record` as a journal event. |