We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following logs shows up many times with verbose mode enabled:
mkdocs_autorefs: Enabling Markdown anchors feature
It comes from here:
autorefs/src/mkdocs_autorefs/references.py
Line 324 in 08c8945
Just use latest version and run mkdocs serve -v.
mkdocs serve -v
We should display it only once, or not at all.
python -m mkdocs_autorefs.debug # | xclip -selection clipboard
PYTHONPATH
/home/pawamoy/.local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/pep582
mkdocs-autorefs
We could use a class variable to check if the message was already logged.
The text was updated successfully, but these errors were encountered:
fix: Only log "Markdown anchors feature enabled" once
1c9bda1
Issue-44: #44
pawamoy
No branches or pull requests
Description of the bug
The following logs shows up many times with verbose mode enabled:
It comes from here:
autorefs/src/mkdocs_autorefs/references.py
Line 324 in 08c8945
To Reproduce
Just use latest version and run
mkdocs serve -v
.Expected behavior
We should display it only once, or not at all.
Environment information
python -m mkdocs_autorefs.debug # | xclip -selection clipboard
PYTHONPATH
:/home/pawamoy/.local/pipx/venvs/pdm/lib/python3.11/site-packages/pdm/pep582
mkdocs-autorefs
v1.0.1Additional context
We could use a class variable to check if the message was already logged.
The text was updated successfully, but these errors were encountered: