remove an old debug log message from Issue::new_comment()

This commit is contained in:
Sebastian Kuzminsky 2025-07-08 10:49:10 -06:00
parent 4d6e18a9f4
commit ccabfa4ec8

View file

@ -75,7 +75,6 @@ impl fmt::Display for State {
State::InProgress => "inprogress", State::InProgress => "inprogress",
State::Done => "done", State::Done => "done",
State::WontDo => "wontdo", State::WontDo => "wontdo",
}; };
write!(f, "{fmt_str}") write!(f, "{fmt_str}")
} }
@ -145,7 +144,6 @@ impl Issue {
let mut dir = std::path::PathBuf::from(&self.dir); let mut dir = std::path::PathBuf::from(&self.dir);
dir.push("comments"); dir.push("comments");
if !dir.exists() { if !dir.exists() {
println!("creating {}", dir.to_string_lossy());
std::fs::create_dir(&dir)?; std::fs::create_dir(&dir)?;
} }