diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html b/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html index 31066fc..ad1a39d 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering " + attribute.path) }} {% if config.show_if_no_docstring or attribute.has_docstrings %}
diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/children.html b/src/mkdocstrings_handlers/python/templates/material/_base/children.html index 5cf217f..fe9a194 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/children.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/children.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering children of " + obj.path) }} {% if obj.members %}
diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/class.html b/src/mkdocstrings_handlers/python/templates/material/_base/class.html index a5c9c87..3b72f54 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/class.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/class.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering " + class.path) }} {% if config.show_if_no_docstring or class.has_docstrings %}
diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html index f8071bd..b473a8f 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering docstring") }} {% if docstring_sections %} {% for section in docstring_sections %} {% if section.kind.value == "text" %} diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html index a8c0887..b3cab48 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering admonition") }}
{{ section.title|convert_markdown(heading_level, html_id, strip_paragraph=True) }} {{ section.value.contents|convert_markdown(heading_level, html_id) }} diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html index 1351512..5d0dc85 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering attributes section") }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Attributes:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html index 553308f..0f96e1e 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering examples section") }}

{{ section.title or "Examples:" }}

{% for section_type, sub_section in section.value %} {% if section_type == "markdown" %} diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html index d31ef7f..709a799 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering other parameters section") }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Other Parameters:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html index 9bc227a..4a28ae1 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering parameters section") }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Parameters:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html index 2de9420..71d76e1 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering raises section") }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Raises:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html index f6d9c82..0a6c5b5 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering receives section") }} {% if config.docstring_section_style == "table" %} {% set name_column = section.value|selectattr("name")|any %}

{{ section.title or "Receives:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html index 1c5824b..b62c809 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering returns section") }} {% if config.docstring_section_style == "table" %} {% set name_column = section.value|selectattr("name")|any %}

{{ section.title or "Returns:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html index 7285398..4b2d686 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering warns section") }} {% if config.docstring_section_style == "table" %}

{{ section.title or "Warns:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html index eabbedf..b24ce80 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering yields section") }} {% if config.docstring_section_style == "table" %} {% set name_column = section.value|selectattr("name")|any %}

{{ section.title or "Yields:" }}

diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/function.html b/src/mkdocstrings_handlers/python/templates/material/_base/function.html index fa19079..a17f3a2 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/function.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/function.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering " + function.path) }} {% if config.show_if_no_docstring or function.has_docstrings %}
diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/module.html b/src/mkdocstrings_handlers/python/templates/material/_base/module.html index 998f93e..54e4d4e 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/module.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/module.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering " + module.path) }} {% if config.show_if_no_docstring or module.has_docstrings %}
diff --git a/src/mkdocstrings_handlers/python/templates/material/_base/signature.html b/src/mkdocstrings_handlers/python/templates/material/_base/signature.html index 10d3bb3..d0a7fbe 100644 --- a/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +++ b/src/mkdocstrings_handlers/python/templates/material/_base/signature.html @@ -1,4 +1,4 @@ -{{ log.debug() }} +{{ log.debug("Rendering signature of " + function.path) }} {%- if config.show_signature -%} {%- with -%}