Better error log messaging.

This commit is contained in:
Bill Thiede 2021-02-24 07:12:14 -08:00
parent 7da8639881
commit 872c1096a6

View File

@ -617,7 +617,7 @@ impl MovieLibrary {
Some((path.to_string_lossy().into_owned(), json)) Some((path.to_string_lossy().into_owned(), json))
} }
Err(e) => { Err(e) => {
error!("{}", e); error!("failed to open {}: {}", path.to_string_lossy(), e);
None None
} }
} }