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 } => {
|
GitCommit { message, diffs } => {
|
||||||
eprintln!("Recieved commit request");
|
|
||||||
if let Some(workspace) = self.workspace.lock().clone() {
|
if let Some(workspace) = self.workspace.lock().clone() {
|
||||||
eprintln!("Recieved found workspace");
|
|
||||||
match git_commit(&workspace, &message, diffs) {
|
match git_commit(&workspace, &message, diffs) {
|
||||||
Ok(()) => (),
|
Ok(()) => (),
|
||||||
Err(e) => eprintln!("{e:?}"),
|
Err(e) => eprintln!("{e:?}"),
|
||||||
|
@ -703,7 +701,6 @@ fn git_commit(
|
||||||
&tree,
|
&tree,
|
||||||
&[&parent],
|
&[&parent],
|
||||||
)?;
|
)?;
|
||||||
eprintln!("Committed");
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue