From 76fb3d5ebf3fff5f1c5ce8d71cc24ef66abdfd89 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 14 Mar 2026 16:51:27 +0100 Subject: [PATCH] logging/limit_content: fix --- radicale/app/base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/radicale/app/base.py b/radicale/app/base.py index fafc1af0..cff58ec1 100644 --- a/radicale/app/base.py +++ b/radicale/app/base.py @@ -57,6 +57,7 @@ class ApplicationBase: self._log_bad_put_request_content = configuration.get("logging", "bad_put_request_content") self._response_content_on_debug = configuration.get("logging", "response_content_on_debug") self._request_content_on_debug = configuration.get("logging", "request_content_on_debug") + self._limit_content = configuration.get("logging", "limit_content") self._hook = hook.load(configuration) def _read_xml_request_body(self, environ: types.WSGIEnviron