This is an automated email from the ASF dual-hosted git repository.

rrm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 13c675a844 Demote SSL log line to debug and remove key printing 
(#10054)
13c675a844 is described below

commit 13c675a8449c8c8d60218bab8cfa6b216c11dcc8
Author: Randall Meyer <[email protected]>
AuthorDate: Tue Jul 18 14:11:49 2023 -0700

    Demote SSL log line to debug and remove key printing (#10054)
    
    Fixes issue #10040
---
 iocore/net/SSLUtils.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iocore/net/SSLUtils.cc b/iocore/net/SSLUtils.cc
index 6a622f8705..285b157027 100644
--- a/iocore/net/SSLUtils.cc
+++ b/iocore/net/SSLUtils.cc
@@ -2431,7 +2431,7 @@ SSLMultiCertConfigLoader::load_certs(SSL_CTX *ctx, const 
std::vector<std::string
     }
 
     if (secret_key_data.empty()) {
-      Note("Empty private key for public key %.*s", int(secret_data.size()), 
secret_data.data());
+      Dbg(dbg_ctl_ssl_load, "empty private key for public key %s", 
cert_names_list[i].c_str());
       secret_key_data = secret_data;
     }
     if (!SSLPrivateKeyHandler(ctx, params, keyPath.c_str(), 
secret_key_data.data(), secret_key_data.size())) {

Reply via email to