mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1552 from dagwieers/invoked-fix
Only print 'Invoked with' if there are arguments to the module
This commit is contained in:
commit
710b49de4b
1 changed files with 4 additions and 1 deletions
|
@ -542,7 +542,10 @@ class AnsibleModule(object):
|
||||||
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
||||||
for arg in log_args:
|
for arg in log_args:
|
||||||
msg = msg + arg + '=' + str(log_args[arg]) + ' '
|
msg = msg + arg + '=' + str(log_args[arg]) + ' '
|
||||||
|
if msg:
|
||||||
syslog.syslog(syslog.LOG_NOTICE, 'Invoked with %s' % 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=[]):
|
def get_bin_path(self, arg, required=False, opt_dirs=[]):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue