Merge pull request #1552 from dagwieers/invoked-fix

Only print 'Invoked with' if there are arguments to the module
This commit is contained in:
Michael DeHaan 2012-11-07 14:59:36 -08:00
commit 710b49de4b

View file

@ -542,7 +542,10 @@ class AnsibleModule(object):
syslog.openlog('ansible-%s' % os.path.basename(__file__))
for arg in log_args:
msg = msg + arg + '=' + str(log_args[arg]) + ' '
syslog.syslog(syslog.LOG_NOTICE, 'Invoked with %s' % msg)
if msg:
syslog.syslog(syslog.LOG_NOTICE, 'Invoked with %s' % msg)
else:
syslog.syslog(syslog.LOG_NOTICE, 'Invoked')
def get_bin_path(self, arg, required=False, opt_dirs=[]):
'''