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 6cccc30 commit e1785a7Copy full SHA for e1785a7
src/utils/mod.rs
@@ -129,7 +129,7 @@ pub(crate) fn filter_file<F: FnMut(&str) -> bool>(
129
130
pub(crate) fn canonicalize_path(path: &Path) -> PathBuf {
131
fs::canonicalize(path).unwrap_or_else(|_| {
132
- warn!(path = %path.display(), "could not canonicalize path");
+ warn!("could not canonicalize path {}", path.display());
133
PathBuf::from(path)
134
})
135
}
0 commit comments