From 8bb157f579b87ae71bd38efaba98cb2ab49c6f83 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Tue, 21 Oct 2025 16:18:43 +1100 Subject: [PATCH] chore(connlib): silence `hickory_proto` logs (#10624) These are a bit noisy on DEBUG. --- rust/logging/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/logging/src/lib.rs b/rust/logging/src/lib.rs index 1166cf0bc..ea3d1d9ce 100644 --- a/rust/logging/src/lib.rs +++ b/rust/logging/src/lib.rs @@ -112,7 +112,7 @@ fn parse_filter(directives: &str) -> Result { /// /// By prepending this directive to the active log filter, a simple directive like `debug` actually produces useful logs. /// If necessary, you can still activate logs from these crates by restating them in your directive with a lower filter, i.e. `netlink_proto=debug`. - const IRRELEVANT_CRATES: &str = "netlink_proto=warn,os_info=warn,rustls=warn,opentelemetry_sdk=info,opentelemetry=info,hyper_util=info,h2=info"; + const IRRELEVANT_CRATES: &str = "netlink_proto=warn,os_info=warn,rustls=warn,opentelemetry_sdk=info,opentelemetry=info,hyper_util=info,h2=info,hickory_proto=info"; let env_filter = if directives.is_empty() { EnvFilter::try_new(IRRELEVANT_CRATES)?