From 0541ecfc38d2ee836ff4392b3f000c616783b055 Mon Sep 17 00:00:00 2001 From: Laurent Franceschetti Date: Wed, 16 Oct 2024 19:54:46 +0200 Subject: [PATCH] Demote info messages as debug (#244) --- mkdocs_macros/plugin.py | 6 +++--- setup.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mkdocs_macros/plugin.py b/mkdocs_macros/plugin.py index f9eea42..b236eca 100644 --- a/mkdocs_macros/plugin.py +++ b/mkdocs_macros/plugin.py @@ -712,9 +712,9 @@ def on_config(self, config): From the configuration file, builds a Jinj2 environment with variables, functions and filters. """ - trace("Configuring the macros environment...") + debug("Configuring the macros environment...") # WARNING: this is not the config argument: - trace("Macros arguments\n", self.config) + debug("Macros arguments\n", self.config) # define the variables and macros as dictionaries # (for update function to work): self._variables = SuperDict() @@ -835,7 +835,7 @@ def on_config(self, config): # update environment with the custom filters: self.env.filters.update(self.filters) - trace("End of environment config") + debug("End of environment config") def on_pre_build(self, *, config): """ diff --git a/setup.py b/setup.py index 768a8a6..5e63ab3 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ # Initialization # -------------------- -VERSION_NUMBER = '1.3.5' +VERSION_NUMBER = '1.3.6' # required if you want to run document/test # pip install 'mkdocs-macros-plugin[test]'