From 9d93076a99a530720f4386eba90dc91bf95351fc Mon Sep 17 00:00:00 2001 From: Nathaniel Case Date: Mon, 9 Sep 2019 12:06:54 -0400 Subject: [PATCH] Debug location of ansible-connection when found (#61998) --- lib/ansible/executor/task_executor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/executor/task_executor.py b/lib/ansible/executor/task_executor.py index 3f7c09a0a5f..1367955ae2d 100644 --- a/lib/ansible/executor/task_executor.py +++ b/lib/ansible/executor/task_executor.py @@ -1060,6 +1060,7 @@ def start_connection(play_context, variables): for dirname in candidate_paths: ansible_connection = os.path.join(dirname, 'ansible-connection') if os.path.isfile(ansible_connection): + display.vvvv("Found ansible-connection at path {0}".format(ansible_connection)) break else: raise AnsibleError("Unable to find location of 'ansible-connection'. "