We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd5dff commit d14c38cCopy full SHA for d14c38c
src/file_cache.rs
@@ -174,7 +174,8 @@ impl<T: AsyncFromStrWithState> FileCache<T> {
174
let cached: Cached<T> = static_file.make_fresh();
175
Ok(cached)
176
} else {
177
- Err(e).with_context(|| format!("Couldn't load {} into cache", path.display()))
+ Err(e)
178
+ .with_context(|| format!("Couldn't load \"{}\" into cache", path.display()))
179
}
180
181
Err(e) => {
0 commit comments