From 1db6813a055333c1908e3f2d27c72c3c60b6f219 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 9 Nov 2023 18:46:39 -0500 Subject: [PATCH] add extra debugging with verbosity --- test-broken-selectattr.yml | 42 ++++++++++++++++++++++---------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/test-broken-selectattr.yml b/test-broken-selectattr.yml index 5d0c5c4..ef46f91 100644 --- a/test-broken-selectattr.yml +++ b/test-broken-selectattr.yml @@ -37,23 +37,29 @@ - name: Debug r_lint_warnings ansible.builtin.debug: - msg: - - "File: {{ item['location']['path'] }}" - - "Level: {{ item['level'] }}" - - "Severity: {{ item['severity'] }}" - - "Description: {{ item['description'] }}" - loop: "{{ r_lint_warnings }}" - loop_control: - label: "{{ item['location']['path'] }}" + verbosity: 1 + var: r_lint_warnings - - name: Debug r_lint_failures - ansible.builtin.debug: - msg: - - "File: {{ item['location']['path'] }}" - - "Level: {{ item['level'] }}" - - "Severity: {{ item['severity'] }}" - - "Description: {{ item['description'] }}" - loop: "{{ r_lint_failures }}" - loop_control: - label: "{{ item['location']['path'] }}" + # - name: Debug r_lint_warnings + # ansible.builtin.debug: + # msg: + # - "File: {{ item['location']['path'] }}" + # - "Level: {{ item['level'] }}" + # - "Severity: {{ item['severity'] }}" + # - "Description: {{ item['description'] }}" + # loop: "{{ r_lint_warnings }}" + # loop_control: + # label: "{{ item['location']['path'] }}" + + + # - name: Debug r_lint_failures + # ansible.builtin.debug: + # msg: + # - "File: {{ item['location']['path'] }}" + # - "Level: {{ item['level'] }}" + # - "Severity: {{ item['severity'] }}" + # - "Description: {{ item['description'] }}" + # loop: "{{ r_lint_failures }}" + # loop_control: + # label: "{{ item['location']['path'] }}"