Skip to content

Commit 4894535

Browse files
committed
Log "X fonts could not be found." as an error instead of a info
1 parent 1064060 commit 4894535

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

font_collector/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,9 @@ def main() -> None:
9898
fonts_file_found.add(font_result.font_face.font_file)
9999

100100
if nbr_font_not_found == 0:
101-
_logger.info(f"All fonts found")
101+
_logger.info(f"All font(s) found")
102102
else:
103-
_logger.info(f"{nbr_font_not_found} fonts could not be found.")
103+
_logger.error(f"{nbr_font_not_found} font(s) could not be found.")
104104

105105
if mkv_path is not None:
106106
if delete_fonts:

0 commit comments

Comments
 (0)