keep one CargoTomlNotFoundError
This commit is contained in:
@@ -115,12 +115,17 @@ pub fn main_loop(
|
||||
Ok(workspace) => loaded_workspaces.push(workspace),
|
||||
Err(e) => {
|
||||
log::error!("loading workspace failed: {:?}", e);
|
||||
if let Some(ra_project_model::CargoTomlNoneFoundError(_)) = e.downcast_ref()
|
||||
|
||||
if let Some(ra_project_model::CargoTomlNotFoundError {
|
||||
searched_at: _,
|
||||
reason: _,
|
||||
}) = e.downcast_ref()
|
||||
{
|
||||
if !feature_flags.get("notifications.cargo-toml-not-found") {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
show_message(
|
||||
req::MessageType::Error,
|
||||
format!("rust-analyzer failed to load workspace: {:?}", e),
|
||||
|
||||
Reference in New Issue
Block a user