From f96966a62f3770c543f3cf9bb17da9fbaf5f3c79 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Fri, 5 Jan 2024 22:22:20 +0100 Subject: [PATCH] Change GnuTLS "slot handling" messages to debug level Those messages are about an internal implementation detail, not relevant for an administrator of ngIRCd. --- src/ngircd/conn-ssl.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ngircd/conn-ssl.c b/src/ngircd/conn-ssl.c index 4dd335ea..0c46c975 100644 --- a/src/ngircd/conn-ssl.c +++ b/src/ngircd/conn-ssl.c @@ -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++; -- 2.39.2