Add names to debug statements for better troubleshooting.

This commit is contained in:
Hyperling 2021-07-19 09:56:39 -05:00
parent 3817fd81e0
commit 797ad851ad

View File

@ -80,15 +80,18 @@
dash_to_dock_ext_name: "{{ dash_to_dock_ext_comma }}'dash-to-dock@micxgx.gmail.com']" dash_to_dock_ext_name: "{{ dash_to_dock_ext_comma }}'dash-to-dock@micxgx.gmail.com']"
when: dash_to_dock_exists.failed when: dash_to_dock_exists.failed
- debug: - name: Workstation | Account Management | GNOME | Dash To Dock | Print Value To Append With
debug:
var: dash_to_dock_ext_name var: dash_to_dock_ext_name
when: dash_to_dock_exists.failed when: dash_to_dock_exists.failed
- debug: - name: Workstation | Account Management | GNOME | Dash To Dock | Print Value To Append To
debug:
var: gnome_enabled_extensions var: gnome_enabled_extensions
when: dash_to_dock_exists.failed when: dash_to_dock_exists.failed
- debug: - name: Workstation | Account Management | GNOME | Dash To Dock | Print Combined Value
debug:
msg: "{{ gnome_enabled_extensions | replace(']', dash_to_dock_ext_name) }}" msg: "{{ gnome_enabled_extensions | replace(']', dash_to_dock_ext_name) }}"
when: dash_to_dock_exists.failed when: dash_to_dock_exists.failed