Skip to content

Commit ccd9cfb

Browse files
committed
Adjust some logging levels from info to debug
1 parent 8b8e6ce commit ccd9cfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/style_variant_builder/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

src/style_variant_builder/prune.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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."""

0 commit comments

Comments
 (0)