ultrabug / mkdocs-static-i18n

MkDocs i18n plugin using static translation markdown files
https://ultrabug.github.io/mkdocs-static-i18n/
MIT License
223 stars 37 forks source link

Fix duplicate log messages #257

Closed kamilkrzyskow closed 11 months ago

kamilkrzyskow commented 11 months ago

MkDocs 1.5 started using f-strings when creating build time log messages, therefore each string is unique (as the time typically changes slightly). The old solution stopped working, so now instead I've created a different DuplicateFilter class, which looks at the prefix of the log and not the exact match. Additionally this PR changes makes more logging changes:

ultrabug commented 11 months ago

Thank you!