Skip to content

Commit 81b1dac

Browse files
author
kiran-garre
committed
chore: Remove debugging in todos.rs
1 parent 70423f9 commit 81b1dac

File tree

1 file changed

+0
-2
lines changed
  • crates/chat-cli/src/cli/chat/cli

1 file changed

+0
-2
lines changed

crates/chat-cli/src/cli/chat/cli/todos.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ impl TodoSubcommand {
6464
Err(e) => return Err(ChatError::Custom(format!("Could not get all to-do lists: {e}").into())),
6565
};
6666
let mut cleared_one = false;
67-
println!("Starting loop!: {} entries", entries.len());
6867

6968
for (id, value) in entries.iter() {
7069
let todo_status = match value.as_str() {
@@ -76,7 +75,6 @@ impl TodoSubcommand {
7675
},
7776
None => continue,
7877
};
79-
println!("{}", todo_status.task_description);
8078
if todo_status.completed.iter().all(|b| *b) {
8179
match os.database.delete_todo(id) {
8280
Ok(_) => cleared_one = true,

0 commit comments

Comments
 (0)