Better error message when file lookup fails (#30894)

* Alert user which debug level will show them useful details
pull/35236/head
Dustin Spicuzza 7 years ago committed by Adam Miller
parent a8b9d7f8be
commit b2dcc9c587

@ -123,6 +123,6 @@ class LookupBase(AnsiblePlugin):
result = self._loader.path_dwim_relative_stack(paths, subdir, needle) result = self._loader.path_dwim_relative_stack(paths, subdir, needle)
except AnsibleFileNotFound: except AnsibleFileNotFound:
if not ignore_missing: if not ignore_missing:
self._display.warning("Unable to find '%s' in expected paths." % needle) self._display.warning("Unable to find '%s' in expected paths (use -vvvvv to see paths)" % needle)
return result return result

Loading…
Cancel
Save