Commit e4d827e6 by Michael DeHaan

Fix logging callback parameters

parent df5d134a
...@@ -60,7 +60,7 @@ class CallbackModule(object): ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment