1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-29 18:40:51 +00:00

actix-files: "Specified path is not a directory" error now includes the path (#1004)

This commit is contained in:
erikdesjardins 2019-07-22 20:41:59 -04:00 committed by Nikolay Kim
parent f3751d83f8
commit 52372fcbea

View file

@ -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 {