mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 14:21:44 +00:00
Merge #6653
6653: Downgrade "failed to load" error to warning r=jonas-schievink a=jonas-schievink Fixes https://github.com/rust-analyzer/rust-analyzer/issues/6596 bors r+ Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>
This commit is contained in:
commit
59c4975b54
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ impl GlobalState {
|
||||||
}
|
}
|
||||||
let res = vfs.file_id(&vfs_path);
|
let res = vfs.file_id(&vfs_path);
|
||||||
if res.is_none() {
|
if res.is_none() {
|
||||||
log::error!("failed to load {}", path.display())
|
log::warn!("failed to load {}", path.display())
|
||||||
}
|
}
|
||||||
res
|
res
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue