From 7091890ae7a6964b370b9af4c5ebb6cdb918a742 Mon Sep 17 00:00:00 2001 From: Tanvi Jagtap Date: Tue, 2 Jul 2024 04:02:28 -0700 Subject: [PATCH] [Gpr_To_Absl_Logging] [Gpr_To_Absl_Logging] Minor log formatting fixes PiperOrigin-RevId: 648665041 --- src/core/tsi/ssl_transport_security_utils.cc | 2 +- test/cpp/interop/interop_client.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/tsi/ssl_transport_security_utils.cc b/src/core/tsi/ssl_transport_security_utils.cc index 74764e84b73..d35baf4e618 100644 --- a/src/core/tsi/ssl_transport_security_utils.cc +++ b/src/core/tsi/ssl_transport_security_utils.cc @@ -265,7 +265,7 @@ bool VerifyCrlSignature(X509_CRL* crl, X509* issuer) { if (ikey == nullptr) { // Can't verify signature because we couldn't get the pubkey, fail the // check. - VLOG(2) << "Could not public key from certificate."; + VLOG(2) << "Could not get public key from certificate."; EVP_PKEY_free(ikey); return false; } diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc index 165e46da54c..1cfcb10be65 100644 --- a/test/cpp/interop/interop_client.cc +++ b/test/cpp/interop/interop_client.cc @@ -605,7 +605,7 @@ bool InteropClient::DoServerCompressedStreaming() { absl::StrFormat("(compression=%s; size=%d)", compressions[i] ? "true" : "false", sizes[i]); - VLOG(2) << "Sending request streaming rpc " << log_suffix.c_str(); + VLOG(2) << "Sending request streaming rpc " << log_suffix; ResponseParameters* const response_parameter = request.add_response_parameters();