feat: without logging

This commit is contained in:
kjuulh 2025-07-06 20:48:37 +02:00
parent e8c315f3b8
commit 0d4d1d4d5c

View File

@ -38,9 +38,7 @@ pub enum Subcommands {
#[tokio::main] #[tokio::main]
async fn main() -> anyhow::Result<()> { async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt() tracing_subscriber::fmt()
.with_env_filter( .with_env_filter(EnvFilter::from_default_env())
EnvFilter::from_default_env().add_directive("nossh=debug".parse().unwrap()),
)
.init(); .init();
let command = Command::parse(); let command = Command::parse();