From: Thomas Zajic Date: Fri, 19 Jul 2019 00:51:45 +0000 (+0000) Subject: Bug 4970: excessive gnutls_certificate_credentials debug msgs (#439) X-Git-Tag: SQUID_4_9~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f4c4b1b3c1f8af5f0eb30b3aacac1c04f8747a4;p=thirdparty%2Fsquid.git Bug 4970: excessive gnutls_certificate_credentials debug msgs (#439) Also fixed destruction message text format for consistency sake and to match scripts/find-alive.pl expectations. Broken since commit 60fcfad. --- diff --git a/src/security/PeerOptions.h b/src/security/PeerOptions.h index 928295b0af..e64fccc593 100644 --- a/src/security/PeerOptions.h +++ b/src/security/PeerOptions.h @@ -115,7 +115,7 @@ protected: #elif USE_GNUTLS debugs(83, 5, "gnutls_certificate_credentials construct, this=" << (void*)ctx); return Security::ContextPointer(ctx, [](gnutls_certificate_credentials_t p) { - debugs(83, 0, "gnutls_certificate_credentials destruct this=" << (void*)p); + debugs(83, 5, "gnutls_certificate_credentials destruct, this=" << (void*)p); gnutls_certificate_free_credentials(p); }); #else