From 6f8fc147ed4fdd079af4483c5968a709469bd2da Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 14 Mar 2026 15:18:26 +0100 Subject: [PATCH] logging/limit_content: add missing one --- radicale/app/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/app/base.py b/radicale/app/base.py index 44f064e7..fafc1af0 100644 --- a/radicale/app/base.py +++ b/radicale/app/base.py @@ -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()