Skip to content

Commit

Permalink
chore: use default tokio-console port
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf committed Oct 16, 2023
1 parent 76ca832 commit b961092
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ impl Cli {
.into(),
)
.from_env_lossy()
// Ignore traces from spammy dependencies
.add_directive("quinn=warn".parse().unwrap())
.add_directive("anemo=warn".parse().unwrap())
.add_directive("rustls=warn".parse().unwrap())
Expand All @@ -96,7 +97,7 @@ impl Cli {
// Spawn tokio_console server
let console_layer = console_subscriber::Builder::default()
.with_default_env()
.server_addr(([0, 0, 0, 0], 9001))
.server_addr(([0, 0, 0, 0], 6669))
.spawn();
registry.with(console_layer).init();
} else {
Expand Down

0 comments on commit b961092

Please sign in to comment.