Skip to content

Commit

Permalink
Enable tracing to debug. (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated authored Sep 19, 2023
1 parent 7c8287e commit 6e0e852
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions moq-relay/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ async fn main() -> anyhow::Result<()> {
env_logger::init();

// Disable tracing so we don't get a bunch of Quinn spam.
/* TODO disable again after debugging
let tracer = tracing_subscriber::FmtSubscriber::builder()
.with_max_level(tracing::Level::WARN)
.finish();
tracing::subscriber::set_global_default(tracer).unwrap();
*/

let config = Config::parse();

Expand Down

0 comments on commit 6e0e852

Please sign in to comment.