Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change excluded file log level to INFO #53

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mkdocs_git_committers_plugin_2/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def on_page_context(self, context, page, config, nav):
if not self.enabled:
return context
if exclude(page.file.src_path, self.excluded_pages):
LOG.warning("git-committers: " + page.file.src_path + " is excluded")
LOG.info("git-committers: " + page.file.src_path + " is excluded")
return context
start = timer()
git_path = self.config['docs_path'] + page.file.src_path
Expand Down