Skip to content

Commit

Permalink
pd: remove console flag
Browse files Browse the repository at this point in the history
  • Loading branch information
erwanor authored and conorsch committed Apr 8, 2024
1 parent fa7a177 commit 479966c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions crates/bin/pd/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion crates/bin/pd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 479966c

Please sign in to comment.