Skip to content

Commit

Permalink
Set logging severity from warning to info for missing fonts problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Honny1 committed Jun 23, 2023
1 parent 30f1480 commit 65d26da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openscap_report/report_generators/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def include_file_in_base64(context, relative_path):
if "RedHat" in relative_path:
real_path = Path(relative_path)
if not real_path.exists():
logging.warning("Please, install font: %s", real_path.name)
logging.info("Please, install font: %s", real_path.name)
return Markup("NO-FONT-DATA")
base64_data = None
with open(real_path, "rb") as file_data:
Expand Down

0 comments on commit 65d26da

Please sign in to comment.