Skip to content

Commit 04aa5d0

Browse files
committed
fix(integrations): decrease log level
1 parent 535702c commit 04aa5d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mkdocs_rss_plugin/integrations/theme_material_blog_plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,14 @@ def is_page_a_blog_post(self, mkdocs_page: Post | MkdocsPageSubset) -> bool:
142142
bool: True if the given page is a Material Blog post.
143143
"""
144144
if self.IS_ENABLED and isinstance(mkdocs_page, Post):
145-
logger.info(
145+
logger.debug(
146146
f"page '{mkdocs_page.file.src_uri}' identified as Material Blog post."
147147
)
148148
return True
149149
elif isinstance(mkdocs_page, MkdocsPageSubset) and Path(
150150
mkdocs_page.src_uri
151151
).is_relative_to(self.blog_plugin_cfg.config.blog_dir):
152-
logger.info(
152+
logger.debug(
153153
f"page '{mkdocs_page.src_uri}' identified as Material Blog post "
154154
f"by src_uri matching."
155155
)

0 commit comments

Comments
 (0)