Show Copilot logs right after its LSP server start

This commit is contained in:
Kirill Bulatov 2023-09-20 12:08:32 +03:00
parent 82010b68c1
commit 6ebe49ec59
2 changed files with 3 additions and 3 deletions

View file

@ -277,7 +277,7 @@ pub struct Copilot {
}
pub enum Event {
CopilotReady,
CopilotLanguageServerStarted,
}
impl Entity for Copilot {
@ -431,6 +431,7 @@ impl Copilot {
sign_in_status: SignInStatus::SignedOut,
registered_buffers: Default::default(),
});
cx.emit(Event::CopilotLanguageServerStarted);
this.update_sign_in_status(status, cx);
}
Err(error) => {
@ -873,7 +874,6 @@ impl Copilot {
self.register_buffer(&buffer, cx);
}
}
cx.emit(Event::CopilotReady);
}
request::SignInStatus::NotAuthorized { .. } => {
server.sign_in_status = SignInStatus::Unauthorized;