Displaying task_path on task start when verbosity is more than 3
This commit is contained in:
parent
254d6be520
commit
e52950a939
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,10 @@ class CallbackModule(CallbackBase):
|
|||
|
||||
def v2_playbook_on_task_start(self, task, is_conditional):
|
||||
self._display.banner("TASK [%s]" % task.get_name().strip())
|
||||
if self._display.verbosity > 3:
|
||||
path = task.get_path()
|
||||
if path:
|
||||
self._display.display("task path: %s" % path, color='cyan')
|
||||
|
||||
def v2_playbook_on_cleanup_task_start(self, task):
|
||||
self._display.banner("CLEANUP TASK [%s]" % task.get_name().strip())
|
||||
|
|
Loading…
Reference in a new issue