]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Promote "list of supported groups" message to notice.
authorNick Mathewson <nickm@torproject.org>
Wed, 23 Apr 2025 18:11:39 +0000 (14:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 23 Apr 2025 18:13:30 +0000 (14:13 -0400)
I have a feeling that this might help diagnosing
any other problems similar to #41058.

src/lib/tls/tortls_openssl.c

index 24b0b3e6d442a57879840f92f9747aa18fa10c2d..8cc8f1f33f842dc85d3a481426255e48f57be81e 100644 (file)
@@ -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;
       }