quinn-rs / quinn

Async-friendly QUIC implementation in Rust
Apache License 2.0
3.76k stars 380 forks source link

Too much debug log #1538

Closed neevek closed 1 year ago

neevek commented 1 year ago

Hi, this line is repeatedly printed, it is still too much for a debug log:

[connection.rs:226] [D] drive; id=0
Ralith commented 1 year ago

Quinn does not print anything; that's governed by your tracing subscriber configuration. You should adjust that configuration not to print messages when Quinn enters a span.

neevek commented 1 year ago

Quinn does not print anything; that's governed by your tracing subscriber configuration. You should adjust that configuration not to print messages when Quinn enters a span.

OK I'll check my settings, thanks.