From: Nick Mathewson Date: Wed, 23 Apr 2025 18:11:39 +0000 (-0400) Subject: Promote "list of supported groups" message to notice. X-Git-Tag: tor-0.4.8.17~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba88ad6b;p=thirdparty%2Ftor.git Promote "list of supported groups" message to notice. I have a feeling that this might help diagnosing any other problems similar to #41058. --- 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; }