summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Cammarata <jimi@sngx.net>2016-10-06 08:56:42 -0500
committerJames Cammarata <jimi@sngx.net>2016-10-06 08:56:42 -0500
commit6db31bb4c6f8b6338a38ae602d3b4f5ca8cbce5b (patch)
tree104b810fbccdc622fe63ceae529e8e20d901d5af
parenta7d0cc6e611d79adf3286ae98638f99050d08c35 (diff)
downloadansible-6db31bb4c6f8b6338a38ae602d3b4f5ca8cbce5b.tar.gz
Moves 'statically included' messages to -vv verbosity
-rw-r--r--lib/ansible/playbook/helpers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/playbook/helpers.py b/lib/ansible/playbook/helpers.py
index 065a9587d3..9a81ccde3e 100644
--- a/lib/ansible/playbook/helpers.py
+++ b/lib/ansible/playbook/helpers.py
@@ -184,7 +184,7 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
# the same fashion used by the on_include callback. We also do it here,
# because the recursive nature of helper methods means we may be loading
# nested includes, and we want the include order printed correctly
- display.display("statically included: %s" % include_file, color=C.COLOR_SKIP)
+ display.vv("statically included: %s" % include_file, color=C.COLOR_SKIP)
except AnsibleFileNotFound as e:
if t.static or \
C.DEFAULT_TASK_INCLUDES_STATIC or \