diff --git a/material/plugins/social/plugin.py b/material/plugins/social/plugin.py index a8960083030..eb7e5ca3530 100644 --- a/material/plugins/social/plugin.py +++ b/material/plugins/social/plugin.py @@ -500,17 +500,6 @@ def _resolve_font(self, family: str, style: str): if not fallback or len(name) < len(fallback): fallback = name - # Print warning in debug mode, since the font could not be resolved - if self.config.debug: - log.warning( - f"Couldn't find style '{style}' for font family '{family}'. " + - f"Styles available:\n\n" + - f"\n".join([os.path.splitext(file)[0] for file in list]) + - f"\n\n" - f"Falling back to: {fallback}\n" - f"\n" - ) - # Fall back to regular font (guess if there are multiple) return self._resolve_font(family, fallback) diff --git a/src/plugins/social/plugin.py b/src/plugins/social/plugin.py index a8960083030..eb7e5ca3530 100644 --- a/src/plugins/social/plugin.py +++ b/src/plugins/social/plugin.py @@ -500,17 +500,6 @@ def _resolve_font(self, family: str, style: str): if not fallback or len(name) < len(fallback): fallback = name - # Print warning in debug mode, since the font could not be resolved - if self.config.debug: - log.warning( - f"Couldn't find style '{style}' for font family '{family}'. " + - f"Styles available:\n\n" + - f"\n".join([os.path.splitext(file)[0] for file in list]) + - f"\n\n" - f"Falling back to: {fallback}\n" - f"\n" - ) - # Fall back to regular font (guess if there are multiple) return self._resolve_font(family, fallback)