diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-04-03 19:07:38 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-04-03 19:07:38 +0200 |
| commit | 714ee20485b8dbc83e140821cc7a52634522b446 (patch) | |
| tree | 87a5e8d29f3914801708c6dce2ad963829111787 | |
| parent | d42806588ae102901962e3d2fbd207b631098986 (diff) | |
Refine logging removing unnecessary logging by default
| -rw-r--r-- | roles/font/tasks/main.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/font/tasks/main.yml b/roles/font/tasks/main.yml index f31df195..bdeb3657 100644 --- a/roles/font/tasks/main.yml +++ b/roles/font/tasks/main.yml @@ -61,6 +61,7 @@ return_content: true register: font_google_fonts_metadata loop: "{{ font_google_font_families }}" + no_log: "{{ ansible_verbosity == 0 }}" - name: "Parse Google Fonts file references" vars: @@ -69,6 +70,7 @@ ansible.builtin.set_fact: font_google_font_files: "{{ font_google_font_files | default([]) + font_file_refs }}" loop: "{{ font_google_fonts_metadata.results }}" + no_log: "{{ ansible_verbosity == 0 }}" - name: "Install Google Fonts" become: true |
