indent callback output if using 3verbosity or higher (#16231)
This commit is contained in:
parent
ba2d1d0bc4
commit
4065acc37d
2 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ class CallbackBase:
|
||||||
if result.get('_ansible_no_log', False):
|
if result.get('_ansible_no_log', False):
|
||||||
return json.dumps(dict(censored="the output has been hidden due to the fact that 'no_log: true' was specified for this result"))
|
return json.dumps(dict(censored="the output has been hidden due to the fact that 'no_log: true' was specified for this result"))
|
||||||
|
|
||||||
if not indent and '_ansible_verbose_always' in result and result['_ansible_verbose_always']:
|
if not indent and (result.get('_ansible_verbose_always') or self._display.verbosity > 2):
|
||||||
indent = 4
|
indent = 4
|
||||||
|
|
||||||
# All result keys stating with _ansible_ are internal, so remove them from the result before we output anything.
|
# All result keys stating with _ansible_ are internal, so remove them from the result before we output anything.
|
||||||
|
|
|
@ -295,7 +295,7 @@ test_lookup_paths: setup
|
||||||
|
|
||||||
no_log: setup
|
no_log: setup
|
||||||
# This test expects 7 loggable vars and 0 non loggable ones, if either mismatches it fails, run the ansible-playbook command to debug
|
# This test expects 7 loggable vars and 0 non loggable ones, if either mismatches it fails, run the ansible-playbook command to debug
|
||||||
[ "$$(ansible-playbook no_log_local.yml -i $(INVENTORY) -e outputdir=$(TEST_DIR) -vvvvv | awk --source 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "%d/%d", logme, nolog; }')" = "6/0" ]
|
[ "$$(ansible-playbook no_log_local.yml -i $(INVENTORY) -e outputdir=$(TEST_DIR) -vvvvv | awk --source 'BEGIN { logme = 0; nolog = 0; } /LOG_ME/ { logme += 1;} /DO_NOT_LOG/ { nolog += 1;} END { printf "%d/%d", logme, nolog; }')" = "26/0" ]
|
||||||
|
|
||||||
test_binary_modules:
|
test_binary_modules:
|
||||||
mytmpdir=$(MYTMPDIR); \
|
mytmpdir=$(MYTMPDIR); \
|
||||||
|
|
Loading…
Reference in a new issue