mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9887 from lmacken/devel
Use send instead of sendv on the systemd.journal (fixes #9886)
This commit is contained in:
commit
e6b5cc9ccb
1 changed files with 3 additions and 4 deletions
|
@ -1104,12 +1104,11 @@ class AnsibleModule(object):
|
||||||
msg = msg.encode('utf-8')
|
msg = msg.encode('utf-8')
|
||||||
|
|
||||||
if (has_journal):
|
if (has_journal):
|
||||||
journal_args = ["MESSAGE=%s %s" % (module, msg)]
|
journal_args = [("MODULE", os.path.basename(__file__))]
|
||||||
journal_args.append("MODULE=%s" % os.path.basename(__file__))
|
|
||||||
for arg in log_args:
|
for arg in log_args:
|
||||||
journal_args.append(arg.upper() + "=" + str(log_args[arg]))
|
journal_args.append((arg.upper(), str(log_args[arg])))
|
||||||
try:
|
try:
|
||||||
journal.sendv(*journal_args)
|
journal.send("%s %s" % (module, msg), **dict(journal_args))
|
||||||
except IOError, e:
|
except IOError, e:
|
||||||
# fall back to syslog since logging to journal failed
|
# fall back to syslog since logging to journal failed
|
||||||
syslog.openlog(str(module), 0, syslog.LOG_USER)
|
syslog.openlog(str(module), 0, syslog.LOG_USER)
|
||||||
|
|
Loading…
Reference in a new issue