We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 535702c commit 04aa5d0Copy full SHA for 04aa5d0
mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py
@@ -142,14 +142,14 @@ def is_page_a_blog_post(self, mkdocs_page: Post | MkdocsPageSubset) -> bool:
142
bool: True if the given page is a Material Blog post.
143
"""
144
if self.IS_ENABLED and isinstance(mkdocs_page, Post):
145
- logger.info(
+ logger.debug(
146
f"page '{mkdocs_page.file.src_uri}' identified as Material Blog post."
147
)
148
return True
149
elif isinstance(mkdocs_page, MkdocsPageSubset) and Path(
150
mkdocs_page.src_uri
151
).is_relative_to(self.blog_plugin_cfg.config.blog_dir):
152
153
f"page '{mkdocs_page.src_uri}' identified as Material Blog post "
154
f"by src_uri matching."
155
0 commit comments