diff --git a/source/extensions/filters/network/dubbo_proxy/config.cc b/source/extensions/filters/network/dubbo_proxy/config.cc index ad379489f362f..8a1df8f137116 100644 --- a/source/extensions/filters/network/dubbo_proxy/config.cc +++ b/source/extensions/filters/network/dubbo_proxy/config.cc @@ -138,7 +138,7 @@ void ConfigImpl::registerFilter(const DubboFilterConfig& proto_config) { ENVOY_LOG(debug, " dubbo filter #{}", filter_factories_.size()); ENVOY_LOG(debug, " name: {}", string_name); ENVOY_LOG(debug, " config: {}", - MessageUtil::getJsonStringFromMessageOrError(proto_config.config(), true)); + MessageUtil::getJsonStringFromMessageOrError(proto_config.config())); auto& factory = Envoy::Config::Utility::getAndCheckFactoryByName( diff --git a/source/extensions/filters/network/http_connection_manager/config.cc b/source/extensions/filters/network/http_connection_manager/config.cc index 275997caee783..2faa92b8b2a47 100644 --- a/source/extensions/filters/network/http_connection_manager/config.cc +++ b/source/extensions/filters/network/http_connection_manager/config.cc @@ -657,7 +657,7 @@ void HttpConnectionManagerConfig::processFilter( ENVOY_LOG(debug, " name: {}", filter_config_provider->name()); ENVOY_LOG(debug, " config: {}", MessageUtil::getJsonStringFromMessageOrError( - static_cast(proto_config.typed_config()), true)); + static_cast(proto_config.typed_config()))); filter_factories.push_back(std::move(filter_config_provider)); } diff --git a/test/common/upstream/subset_lb_test.cc b/test/common/upstream/subset_lb_test.cc index 133d15cacba90..5514fe682b298 100644 --- a/test/common/upstream/subset_lb_test.cc +++ b/test/common/upstream/subset_lb_test.cc @@ -2458,7 +2458,7 @@ TEST_F(SubsetLoadBalancerSingleHostPerSubsetTest, DuplicateMetadataStat) { // The first 'a' is the original, the next 2 instances of 'a' are duplicates (counted // in stat), and 'b' is another non-duplicate. for (auto& gauge : stats_store_.gauges()) { - ENVOY_LOG_MISC(error, "name {} value {}", gauge->name(), gauge->value()); + ENVOY_LOG_MISC(debug, "name {} value {}", gauge->name(), gauge->value()); } EXPECT_EQ(2, TestUtility::findGauge(stats_store_, "testprefix.lb_subsets_single_host_per_subset_duplicate") diff --git a/test/extensions/filters/listener/tls_inspector/tls_inspector_test.cc b/test/extensions/filters/listener/tls_inspector/tls_inspector_test.cc index 33ef557dbc637..06d49dae2e214 100644 --- a/test/extensions/filters/listener/tls_inspector/tls_inspector_test.cc +++ b/test/extensions/filters/listener/tls_inspector/tls_inspector_test.cc @@ -50,7 +50,7 @@ class TlsInspectorTest : public testing::TestWithParam Api::SysCallSizeResult { - ENVOY_LOG_MISC(error, "In mock syscall recv {} {} {} {}", fd, buffer, length, flag); + ENVOY_LOG_MISC(debug, "In mock syscall recv {} {} {} {}", fd, buffer, length, flag); return Api::SysCallSizeResult{ssize_t(-1), SOCKET_ERROR_AGAIN}; })); EXPECT_CALL(dispatcher_, createFileEvent_(_, _, Event::PlatformDefaultTriggerType, diff --git a/test/integration/extension_discovery_integration_test.cc b/test/integration/extension_discovery_integration_test.cc index 870852c8cb8fe..b0def4f684b6c 100644 --- a/test/integration/extension_discovery_integration_test.cc +++ b/test/integration/extension_discovery_integration_test.cc @@ -159,7 +159,7 @@ class ExtensionDiscoveryIntegrationTest : public Grpc::GrpcClientIntegrationPara config_helper_.addConfigModifier([this](envoy::config::bootstrap::v3::Bootstrap& bootstrap) { listener_config_.Swap(bootstrap.mutable_static_resources()->mutable_listeners(0)); listener_config_.set_name(listener_name_); - ENVOY_LOG_MISC(error, "listener config: {}", listener_config_.DebugString()); + ENVOY_LOG_MISC(debug, "listener config: {}", listener_config_.DebugString()); bootstrap.mutable_static_resources()->mutable_listeners()->Clear(); auto* lds_config_source = bootstrap.mutable_dynamic_resources()->mutable_lds_config(); lds_config_source->set_resource_api_version(envoy::config::core::v3::ApiVersion::V3); diff --git a/test/integration/listener_lds_integration_test.cc b/test/integration/listener_lds_integration_test.cc index 06eacbaa07587..70d9d988f9f6c 100644 --- a/test/integration/listener_lds_integration_test.cc +++ b/test/integration/listener_lds_integration_test.cc @@ -82,7 +82,7 @@ class ListenerIntegrationTest : public HttpIntegrationTest, config_helper_.addConfigModifier([this](envoy::config::bootstrap::v3::Bootstrap& bootstrap) { listener_config_.Swap(bootstrap.mutable_static_resources()->mutable_listeners(0)); listener_config_.set_name(listener_name_); - ENVOY_LOG_MISC(error, "listener config: {}", listener_config_.DebugString()); + ENVOY_LOG_MISC(debug, "listener config: {}", listener_config_.DebugString()); bootstrap.mutable_static_resources()->mutable_listeners()->Clear(); auto* lds_config_source = bootstrap.mutable_dynamic_resources()->mutable_lds_config(); lds_config_source->set_resource_api_version(envoy::config::core::v3::ApiVersion::V3);