From 243b888c8e13c6f6e2de72621ba8b06c5f83e1fb Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Wed, 13 Nov 2024 22:34:53 +0100 Subject: [PATCH] fix unsupported log level --- radicale/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/utils.py b/radicale/utils.py index 035c94a9..8d5d9416 100644 --- a/radicale/utils.py +++ b/radicale/utils.py @@ -72,7 +72,7 @@ def ssl_context_options_by_protocol(protocol: str, ssl_context_options): ssl_context_options &= ~ssl.OP_NO_TLSv1_2 ssl_context_options &= ~ssl.OP_NO_TLSv1_3 elif entry == "SSLv2": - logger.notice("SSL context options, ignore SSLv2 (totally insecure)") + logger.warning("SSL context options, ignore SSLv2 (totally insecure)") elif entry == "SSLv3": ssl_context_options &= ~ssl.OP_NO_SSLv3 logger.debug("SSL context options, enable SSLv3 (maybe not supported by underlying OpenSSL)")