mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Better error message when file lookup fails (#30894)
* Alert user which debug level will show them useful details
This commit is contained in:
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)
|
||||
except AnsibleFileNotFound:
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user