File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/style_variant_builder Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ def build_variants(self) -> tuple[int, int]:
169169 for diff_path in diff_files :
170170 patched_file = None
171171 try :
172- logging .info (f"Processing diff: { diff_path .name } " )
172+ logging .debug (f"Processing diff: { diff_path .name } " )
173173 patched_file = self ._apply_patch (template_path , diff_path )
174174 if patched_file is None :
175175 logging .error (
Original file line number Diff line number Diff line change @@ -179,11 +179,11 @@ def prune_macros(self) -> None:
179179 logging .debug ("No unused macros found." )
180180 break
181181 if total_removed_count > 0 :
182- logging .info (
182+ logging .debug (
183183 f"Removed a total of { total_removed_count } unused macros."
184184 )
185185 else :
186- logging .info ("No macros pruned." )
186+ logging .debug ("No macros pruned." )
187187
188188 def _normalize_xml_declaration (self , text : str ) -> str :
189189 """Ensure XML declaration uses double quotes."""
You can’t perform that action at this time.
0 commit comments