mirror of https://github.com/lapce/lapce.git
Remove surplus debug logs
This commit is contained in:
parent
5f32b485bb
commit
e47cf98fb7
|
@ -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(())
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue