From 46a657fe203be59a5e8ad87c0dbfd9c52ba2f1f6 Mon Sep 17 00:00:00 2001 From: tanvi-jagtap Date: Sat, 4 May 2024 14:25:21 +0000 Subject: [PATCH] [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log --- test/cpp/interop/interop_client.cc | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc index dab87e4fbb2..d6b2118fe25 100644 --- a/test/cpp/interop/interop_client.cc +++ b/test/cpp/interop/interop_client.cc @@ -1286,16 +1286,12 @@ void InteropClient::PerformSoakTest( LOG(INFO) << "(server_uri: " << server_uri << ") soak test ran: " << soak_iterations << " iterations. total_failures: " << total_failures - << " is within " - "max_failures_threshold: " - << max_failures << ". " - << "median_soak_iteration_latency: " << latency_ms_median - << " ms. " - << "90th_soak_iteration_latency: " << latency_ms_90th << " ms. " - << "worst_soak_iteration_latency: " << latency_ms_worst << " ms. " - << "See breakdown above for which iterations succeeded, failed, " - "and " - "why for more info."; + << " is within max_failures_threshold: " << max_failures + << ". median_soak_iteration_latency: " << latency_ms_median + << " ms. 90th_soak_iteration_latency: " << latency_ms_90th + << " ms. worst_soak_iteration_latency: " << latency_ms_worst + << " ms. See breakdown above for which iterations succeeded, " + "failed, and why for more info."; } }