From ba88ad6b09ab2b4a222503a9f758c32932d37096 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 23 Apr 2025 14:11:39 -0400 Subject: [PATCH] Promote "list of supported groups" message to notice. I have a feeling that this might help diagnosing any other problems similar to #41058. --- src/lib/tls/tortls_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/tls/tortls_openssl.c b/src/lib/tls/tortls_openssl.c index 24b0b3e6d4..8cc8f1f33f 100644 --- a/src/lib/tls/tortls_openssl.c +++ b/src/lib/tls/tortls_openssl.c @@ -713,7 +713,7 @@ tor_tls_context_new(crypto_pk_t *identity, unsigned int key_lifetime, } int r = (int) SSL_CTX_set1_groups_list(result->ctx, list); if (r == 1) { - log_info(LD_NET, "Set supported groups to %s", list); + log_notice(LD_NET, "Set list of supported TLS groups to: %s", list); success = true; break; } -- 2.47.2