diff --git a/lapce-proxy/src/dispatch.rs b/lapce-proxy/src/dispatch.rs index 46740041..2d0f0f3e 100644 --- a/lapce-proxy/src/dispatch.rs +++ b/lapce-proxy/src/dispatch.rs @@ -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(()) }