From 479966cacb0d501ace987fe4838c58f7fe074fb7 Mon Sep 17 00:00:00 2001 From: Erwan Or Date: Mon, 8 Apr 2024 18:36:51 -0400 Subject: [PATCH] pd: remove console flag --- crates/bin/pd/src/cli.rs | 3 --- crates/bin/pd/src/main.rs | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/bin/pd/src/cli.rs b/crates/bin/pd/src/cli.rs index f8ee209d73..63bb65aa96 100644 --- a/crates/bin/pd/src/cli.rs +++ b/crates/bin/pd/src/cli.rs @@ -9,9 +9,6 @@ use { #[derive(Debug, Parser)] #[clap(name = "pd", about = "The Penumbra daemon.", version)] pub struct Opt { - /// Enable Tokio Console support. - #[clap(long)] - pub tokio_console: bool, /// Command to run. #[clap(subcommand)] pub cmd: RootCommand, diff --git a/crates/bin/pd/src/main.rs b/crates/bin/pd/src/main.rs index e59c4d5fae..4fbfeaa91a 100644 --- a/crates/bin/pd/src/main.rs +++ b/crates/bin/pd/src/main.rs @@ -43,7 +43,7 @@ async fn main() -> anyhow::Result<()> { // The `EnvFilter` layer is used to filter events based on `RUST_LOG`. let filter_layer = EnvFilter::try_from_default_env().or_else(|_| EnvFilter::try_new("info"))?; - // Register the tracing subscribers, conditionally enabling tokio console support + // Register the tracing subscribers. let registry = tracing_subscriber::registry() .with(filter_layer) .with(fmt_layer)