From 4b0495bb6bf09f97292a8b30b2e97b71cda59256 Mon Sep 17 00:00:00 2001 From: Fredy Wijaya Date: Fri, 10 May 2024 15:28:30 -0500 Subject: [PATCH] mobile: Fix the debug log message in the network configuration filter (#34093) Risk Level: low Testing: n/a Docs Changes: n/a Release Notes: n/a Platform Specific Features: mobile Signed-off-by: Fredy Wijaya --- .../extensions/filters/http/network_configuration/filter.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/library/common/extensions/filters/http/network_configuration/filter.cc b/mobile/library/common/extensions/filters/http/network_configuration/filter.cc index 4939d7e1e00d..08d36be9fd03 100644 --- a/mobile/library/common/extensions/filters/http/network_configuration/filter.cc +++ b/mobile/library/common/extensions/filters/http/network_configuration/filter.cc @@ -73,7 +73,7 @@ void NetworkConfigurationFilter::onProxyResolutionComplete( Http::FilterHeadersStatus NetworkConfigurationFilter::decodeHeaders(Http::RequestHeaderMap& request_headers, bool) { - ENVOY_LOG(trace, "NetworkConfigurationFilter::decodeHeaders", request_headers); + ENVOY_LOG(trace, "NetworkConfigurationFilter::decodeHeaders: {}", request_headers); const auto authority = request_headers.getHostValue(); if (authority.empty()) {