Skip to content

Commit 59c4975

Browse files
Merge #6653
6653: Downgrade "failed to load" error to warning r=jonas-schievink a=jonas-schievink Fixes #6596 bors r+ Co-authored-by: Jonas Schievink <[email protected]>
2 parents b6dd2c6 + e49ba0d commit 59c4975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rust-analyzer/src/reload.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ impl GlobalState {
205205
}
206206
let res = vfs.file_id(&vfs_path);
207207
if res.is_none() {
208-
log::error!("failed to load {}", path.display())
208+
log::warn!("failed to load {}", path.display())
209209
}
210210
res
211211
};

0 commit comments

Comments
 (0)