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:
parent
df5d134ab9
commit
e4d827e6de
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue