mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
Report which requested font families are not present on the system (#3006)
This PR improves the error message when `FontCache.load_family` attempts to load a font that is not present on the system. I ran into this while trying to run the `storybook` for the first time. The error message indicated that a font family was not found, but did not provide any information as to which font family was being loaded. ### Before ``` Compiling storybook v0.1.0 (/Users/maxdeviant/projects/zed/crates/storybook) Finished dev [unoptimized + debuginfo] target(s) in 8.52s Running `/Users/maxdeviant/projects/zed/target/debug/storybook` thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: could not find a non-empty font family matching one of the given names', crates/theme/src/theme_settings.rs:132:18 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace libc++abi: terminating due to uncaught foreign exception fish: Job 1, 'cargo run' terminated by signal SIGABRT (Abort) ``` ### After ``` Compiling storybook v0.1.0 (/Users/maxdeviant/projects/zed/crates/storybook) Finished dev [unoptimized + debuginfo] target(s) in 7.90s Running `/Users/maxdeviant/projects/zed/target/debug/storybook` thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: could not find a non-empty font family matching one of the given names: `Zed Mono`', crates/theme/src/theme_settings.rs:132:18 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace libc++abi: terminating due to uncaught foreign exception fish: Job 1, 'cargo run' terminated by signal SIGABRT (Abort) ``` Release Notes: - N/A
This commit is contained in:
parent
8b6e982495
commit
d0b15ed940
1 changed files with 6 additions and 1 deletions
|
@ -98,7 +98,12 @@ impl FontCache {
|
|||
}
|
||||
|
||||
Err(anyhow!(
|
||||
"could not find a non-empty font family matching one of the given names"
|
||||
"could not find a non-empty font family matching one of the given names: {}",
|
||||
names
|
||||
.iter()
|
||||
.map(|name| format!("`{name}`"))
|
||||
.collect::<Vec<_>>()
|
||||
.join(", ")
|
||||
))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue