From aed368e90d9e9aec99ce5585e2119f350c98835d Mon Sep 17 00:00:00 2001 From: Malte Meiboom Date: Wed, 20 May 2026 13:49:40 +0200 Subject: [PATCH] Remove some debugging messages --- src/commands/locals/add.rs | 3 --- src/commands/locals/remove.rs | 2 -- 2 files changed, 5 deletions(-) diff --git a/src/commands/locals/add.rs b/src/commands/locals/add.rs index 780c050..37193f9 100644 --- a/src/commands/locals/add.rs +++ b/src/commands/locals/add.rs @@ -11,9 +11,6 @@ use crate::commands::CommandError; use crate::common::crypto; pub async fn dispatch(cmd: LocalsAddCommand, config: HuskConfigContainer) -> Result<()> { - println!("add"); - println!(" {:?}", cmd.cert_file); - let context = HuskContext::new(&config.into())?; let policy = &context.policy; diff --git a/src/commands/locals/remove.rs b/src/commands/locals/remove.rs index 989401a..4320c69 100644 --- a/src/commands/locals/remove.rs +++ b/src/commands/locals/remove.rs @@ -14,8 +14,6 @@ use crate::commands::CommandError; use crate::types::husk_context::HuskContext; pub async fn dispatch(cmd: LocalsRemoveCommand, config: HuskConfigContainer) -> Result<()> { - println!("remove"); - println!(" {:?}", cmd.cert); let context = HuskContext::new(&config.into())?; let policy = &context.policy; let cert_store = &context.cert_store;