summaryrefslogtreecommitdiff
path: root/lib/ansible/inventory
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2018-11-27 18:30:14 -0500
committerToshio Kuratomi <a.badger@gmail.com>2018-11-27 15:30:14 -0800
commitae2467ddbcfa02a7b22a2f8bc894537c82da2fdf (patch)
tree0ce3ce4bdce4c21d5ef71700c988295e3cb00537 /lib/ansible/inventory
parent07895538b5ca1f805420a8fb9b280bc083527bf1 (diff)
downloadansible-ae2467ddbcfa02a7b22a2f8bc894537c82da2fdf.tar.gz
Merge pull request #49080 from bcoca/better_invp_skip
more precise pluing skip msg and now in higher verbosity level
Diffstat (limited to 'lib/ansible/inventory')
-rw-r--r--lib/ansible/inventory/manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/inventory/manager.py b/lib/ansible/inventory/manager.py
index a920a5468a..1f43cea447 100644
--- a/lib/ansible/inventory/manager.py
+++ b/lib/ansible/inventory/manager.py
@@ -275,7 +275,7 @@ class InventoryManager(object):
display.debug('%s failed to parse %s' % (plugin_name, source))
failures.append({'src': source, 'plugin': plugin_name, 'exc': AnsibleError(e)})
else:
- display.v('%s did not meet %s requirements, check plugin documentation if this is unexpected' % (source, plugin_name))
+ display.vvv("%s declined parsing %s as it did not pass it's verify_file() method" % (plugin_name, source))
else:
if not parsed and failures:
# only if no plugin processed files should we show errors.