From cd4eb8206777335cfabbb771430a497e6dfb5f0d Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Mon, 7 Jul 2025 22:33:29 -0600 Subject: [PATCH] remove a useless debug message --- src/bin/ent/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/bin/ent/main.rs b/src/bin/ent/main.rs index 63fba60..1c9ddaa 100644 --- a/src/bin/ent/main.rs +++ b/src/bin/ent/main.rs @@ -144,7 +144,6 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<( let Some(issue) = issues.get_mut_issue(issue_id) else { return Err(anyhow::anyhow!("issue {} not found", issue_id)); }; - println!("found issue {}", issue.title()); let mut comment = issue.new_comment()?; match description { Some(description) => {