tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit ba88ad6b09ab2b4a222503a9f758c32932d37096
parent 4d2a6bff4c172736cbbe6fd18536212b8f386e5a
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed, 23 Apr 2025 14:11:39 -0400

Promote "list of supported groups" message to notice.

I have a feeling that this might help diagnosing
any other problems similar to #41058.

Diffstat:
Msrc/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 @@ -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; }