changed verbose_override to the new _ansible_verbose_override to keep in line with previous changes

output now defaults back to having indent=4
This commit is contained in:
Brian Coca
2015-07-27 22:15:44 -04:00
parent 8746e692c1
commit 5f8db9cd4b
5 changed files with 15 additions and 18 deletions

View File

@@ -48,8 +48,8 @@ class CallbackModule(CallbackBase):
def log(self, host, category, data):
if type(data) == dict:
if 'verbose_override' in data:
# avoid logging extraneous data from facts
if '_ansible_verbose_override' in data:
# avoid logging extraneous data
data = 'omitted'
else:
data = data.copy()