From bab630a728512294e3860e0f4c395d41a49440e0 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 28 Dec 2025 12:39:25 +0100 Subject: [PATCH] remove normal hexdump output --- radicale/app/put.py | 1 - 1 file changed, 1 deletion(-) diff --git a/radicale/app/put.py b/radicale/app/put.py index 4c1caf14..86e863ef 100644 --- a/radicale/app/put.py +++ b/radicale/app/put.py @@ -204,7 +204,6 @@ class ApplicationPartPut(ApplicationBase): logger.warning("Bad PUT request content of %r:\n%s", path, utils.textwrap_str(content)) if logger.isEnabledFor(logging.DEBUG): logger.debug("Request content (sha256sum): %s", utils.sha256_str(content)) - logger.debug("Request content (hexdump):\n%s", utils.hexdump_str(content)) logger.debug("Request content (hexdump/lines):\n%s", utils.hexdump_lines(content)) else: logger.debug("Bad PUT request content: suppressed by config/option [logging] bad_put_request_content")