Respond to 'notification' requests from language-client

This commit is contained in:
KtorZ 2022-11-10 16:08:49 +01:00 committed by Lucas
parent 76575cb897
commit 7b5763edeb
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ fn main_loop(connection: Connection, _params: InitializeParams) -> Result<(), Er
connection.sender.send(Message::Response(response))?; connection.sender.send(Message::Response(response))?;
} }
Message::Response(_) => todo!(), Message::Response(_) => todo!(),
Message::Notification(_) => todo!(), Message::Notification(notif) => tracing::debug!("Get notification: {:#?}", notif),
} }
} }