1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix logging callback parameters

This commit is contained in:
Michael DeHaan 2012-09-04 21:57:09 -04:00
parent df5d134ab9
commit e4d827e6de

View file

@ -60,7 +60,7 @@ class CallbackModule(object):
log(host, 'ERROR', msg) log(host, 'ERROR', msg)
def runner_on_skipped(self, host, item=None): def runner_on_skipped(self, host, item=None):
log(host, 'SKIPPED') log(host, 'SKIPPED', '...')
def runner_on_unreachable(self, host, res): def runner_on_unreachable(self, host, res):
log(host, 'UNREACHABLE', res) log(host, 'UNREACHABLE', res)