Skip to content

Commit 2647378

Browse files
authored
apollo_infra: add hickory log filters with both - and _ (#9954)
1 parent 39a16e6 commit 2647378

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

crates/apollo_infra/src/trace_util.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ pub async fn configure_tracing() {
3636
.add_directive("alloy_transport_http=info".parse().unwrap())
3737
.add_directive("alloy_rpc_client=info".parse().unwrap())
3838
.add_directive("futures-util=info".parse().unwrap())
39+
// TODO(shahak): understand if we need - or _ and erase the one we don't need.
3940
.add_directive("hickory-proto=info".parse().unwrap())
41+
.add_directive("hickory_proto=info".parse().unwrap())
42+
// TODO(shahak): understand if we need - or _ and erase the one we don't need.
43+
.add_directive("hickory-resolver=info".parse().unwrap())
44+
.add_directive("hickory_resolver=info".parse().unwrap())
4045
.add_directive("hyper=info".parse().unwrap())
4146
.add_directive("hyper_util=info".parse().unwrap())
4247
.add_directive("h2=info".parse().unwrap())

0 commit comments

Comments
 (0)