Commit 4bc79a74 by Brian Coca

more fine tunnign on verbosity

parent b1e6aaa7
...@@ -70,7 +70,10 @@ class PlaybookExecutor: ...@@ -70,7 +70,10 @@ class PlaybookExecutor:
entry['plays'] = [] entry['plays'] = []
i = 1 i = 1
for play in pb.get_plays(): plays = pb.get_plays()
self._display.vv('%d plays in %s' % (len(plays), playbook_path))
for play in plays:
self._inventory.remove_restriction() self._inventory.remove_restriction()
# Create a temporary copy of the play here, so we can run post_validate # Create a temporary copy of the play here, so we can run post_validate
...@@ -127,7 +130,6 @@ class PlaybookExecutor: ...@@ -127,7 +130,6 @@ class PlaybookExecutor:
if entry: if entry:
entrylist.append(entry) # per playbook entrylist.append(entry) # per playbook
self._display.vvvvv('%d plays in %s' % (i, playbook_path))
if entrylist: if entrylist:
return entrylist return entrylist
......
...@@ -39,7 +39,7 @@ class ConnectionBase: ...@@ -39,7 +39,7 @@ class ConnectionBase:
def __init__(self, connection_info, *args, **kwargs): def __init__(self, connection_info, *args, **kwargs):
self._connection_info = connection_info self._connection_info = connection_info
self._display = Display(connection_info) self._display = Display(verbosity=connection_info.verbosity)
def _become_method_supported(self, become_method): def _become_method_supported(self, become_method):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment