logging/limit_content: add missing one

This commit is contained in:
Peter Bieringer
2026-03-14 15:18:26 +01:00
parent a002c29f52
commit 6f8fc147ed

View File

@@ -83,7 +83,7 @@ class ApplicationBase:
if logger.isEnabledFor(logging.DEBUG):
if self._response_content_on_debug:
logger.debug("Response content (XML):\n%s",
utils.textwrap_str(xmlutils.pretty_xml(xml_content)))
utils.textwrap_str(xmlutils.pretty_xml(xml_content), self._limit_content))
else:
logger.debug("Response content (XML): suppressed by config/option [logging] response_content_on_debug")
f = io.BytesIO()