mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-27 17:22:57 +01:00
actix-files: "Specified path is not a directory" error now includes the path (#1004)
This commit is contained in:
parent
f3751d83f8
commit
52372fcbea
@ -261,7 +261,7 @@ impl Files {
|
||||
pub fn new<T: Into<PathBuf>>(path: &str, dir: T) -> Files {
|
||||
let dir = dir.into().canonicalize().unwrap_or_else(|_| PathBuf::new());
|
||||
if !dir.is_dir() {
|
||||
log::error!("Specified path is not a directory");
|
||||
log::error!("Specified path is not a directory: {:?}", dir);
|
||||
}
|
||||
|
||||
Files {
|
||||
|
Loading…
Reference in New Issue
Block a user