Remove surplus debug logs

This commit is contained in:
Daniel McNab 2022-06-18 14:32:56 +01:00
parent 5f32b485bb
commit e47cf98fb7
1 changed files with 0 additions and 3 deletions

View File

@ -400,9 +400,7 @@ fn handle_notification(&self, rpc: ProxyNotification) {
}
}
GitCommit { message, diffs } => {
eprintln!("Recieved commit request");
if let Some(workspace) = self.workspace.lock().clone() {
eprintln!("Recieved found workspace");
match git_commit(&workspace, &message, diffs) {
Ok(()) => (),
Err(e) => eprintln!("{e:?}"),
@ -703,7 +701,6 @@ fn git_commit(
&tree,
&[&parent],
)?;
eprintln!("Committed");
Ok(())
}