@@ -712,9 +712,9 @@ def on_config(self, config):
712
712
From the configuration file, builds a Jinj2 environment
713
713
with variables, functions and filters.
714
714
"""
715
- trace ("Configuring the macros environment..." )
715
+ debug ("Configuring the macros environment..." )
716
716
# WARNING: this is not the config argument:
717
- trace ("Macros arguments\n " , self .config )
717
+ debug ("Macros arguments\n " , self .config )
718
718
# define the variables and macros as dictionaries
719
719
# (for update function to work):
720
720
self ._variables = SuperDict ()
@@ -835,7 +835,7 @@ def on_config(self, config):
835
835
# update environment with the custom filters:
836
836
self .env .filters .update (self .filters )
837
837
838
- trace ("End of environment config" )
838
+ debug ("End of environment config" )
839
839
840
840
def on_pre_build (self , * , config ):
841
841
"""
@@ -907,7 +907,7 @@ def on_page_markdown(self, markdown, page:Page,
907
907
if not self .variables :
908
908
self .markdown = markdown
909
909
else :
910
- trace ("Rendering source page:" , page .file .src_path )
910
+ debug ("Rendering source page:" , page .file .src_path )
911
911
# Update the page info in the document
912
912
# page is an object with a number of properties (title, url, ...)
913
913
# see: https://github.com/mkdocs/mkdocs/blob/master/mkdocs/structure/pages.py
0 commit comments