]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Change GnuTLS "slot handling" messages to debug level
authorAlexander Barton <alex@barton.de>
Fri, 5 Jan 2024 21:22:20 +0000 (22:22 +0100)
committerAlexander Barton <alex@barton.de>
Sat, 6 Jan 2024 15:21:01 +0000 (16:21 +0100)
Those messages are about an internal implementation detail, not relevant
for an administrator of ngIRCd.

src/ngircd/conn-ssl.c

index 4dd335ea9209f6a01fa11f459fb3e0d976e44a21..0c46c9756ab20088edcab18bfd6de9445f38984b 100644 (file)
@@ -280,8 +280,8 @@ void ConnSSL_Free(CONNECTION *c)
        assert(slot->x509_cred != NULL);
        slot->refcnt--;
        if ((c->ssl_state.x509_cred_idx != x509_cred_idx) && (slot->refcnt <= 0)) {
-               Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.",
-                   c->ssl_state.x509_cred_idx);
+               LogDebug("Discarding X509 certificate credentials from slot %zd.",
+                        c->ssl_state.x509_cred_idx);
                gnutls_certificate_free_keys(slot->x509_cred);
                gnutls_certificate_free_credentials(slot->x509_cred);
                slot->x509_cred = NULL;
@@ -448,7 +448,8 @@ ConnSSL_LoadServerKey_gnutls(void)
        /* Free currently active x509 context (if any) unless it is still in use */
        slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx);
        if ((slot != NULL) && (slot->refcnt <= 0) && (slot->x509_cred != NULL)) {
-               Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.", x509_cred_idx);
+               LogDebug("Discarding X509 certificate credentials from slot %zd.",
+                        x509_cred_idx);
                gnutls_certificate_free_keys(slot->x509_cred);
                gnutls_certificate_free_credentials(slot->x509_cred);
                slot->x509_cred = NULL;
@@ -583,7 +584,7 @@ ConnSSL_Init_SSL(CONNECTION *c)
        gnutls_certificate_server_set_request(c->ssl_state.gnutls_session,
                                              GNUTLS_CERT_REQUEST);
 
-       Log(LOG_INFO, "Using X509 credentials from slot %zd", x509_cred_idx);
+       LogDebug("Using X509 credentials from slot %zd.", x509_cred_idx);
        c->ssl_state.x509_cred_idx = x509_cred_idx;
        x509_cred_slot *slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx);
        slot->refcnt++;