From cdb7f8ecf06f71a45b51ec623a5901ebea362ed3 Mon Sep 17 00:00:00 2001 From: Stephen Fromm Date: Tue, 19 Mar 2013 15:53:35 -0700 Subject: [PATCH] Make logging to journal match what goes to syslog on non-systemd hosts This makes the log message the same, whether it is sent to systemd's journal or to syslog. It retains the extra fields that are passed to journal, such as MOUDLE= and additional arguments. Since journal will reflect messages to syslog, this keeps what goes to syslog informative instead of the terse 'Ansible module invoked'. See issue #2461. --- lib/ansible/module_common.py | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/lib/ansible/module_common.py b/lib/ansible/module_common.py index f656fc0fb6..8e221ad9e7 100644 --- a/lib/ansible/module_common.py +++ b/lib/ansible/module_common.py @@ -664,20 +664,24 @@ class AnsibleModule(object): else: log_args[param] = self.params[param] + module = 'ansible-%s' % os.path.basename(__file__) + msg = '' + for arg in log_args: + msg = msg + arg + '=' + str(log_args[arg]) + ' ' + if msg: + msg = 'Invoked with %s' % msg + else: + msg = 'Invoked' + if (has_journal): - journal_args = ["MESSAGE=Ansible module invoked", "MODULE=%s" % os.path.basename(__file__)] + journal_args = ["MESSAGE=%s %s" % (module, msg)] + journal_args.append("MODULE=%s" % os.path.basename(__file__)) for arg in log_args: journal_args.append(arg.upper() + "=" + str(log_args[arg])) journal.sendv(*journal_args) else: - msg = '' - syslog.openlog('ansible-%s' % str(os.path.basename(__file__)), 0, syslog.LOG_USER) - for arg in log_args: - msg = msg + arg + '=' + str(log_args[arg]) + ' ' - if msg: - syslog.syslog(syslog.LOG_NOTICE, 'Invoked with %s' % msg) - else: - syslog.syslog(syslog.LOG_NOTICE, 'Invoked') + syslog.openlog(module, 0, syslog.LOG_USER) + syslog.syslog(syslog.LOG_NOTICE, msg) def get_bin_path(self, arg, required=False, opt_dirs=[]): '''