diff --git a/src/storage/mod.rs b/src/storage/mod.rs index 9b16d770..446ebec7 100644 --- a/src/storage/mod.rs +++ b/src/storage/mod.rs @@ -218,7 +218,10 @@ impl Store { FSFile::open(&path).map(|mut file| { file.read_to_string(&mut string) - .map_err(|e| error!("Failed reading file: '{}'", path)) + .map_err(|e| { + error!("Failed reading file: '{}'", path); + debug!(" error {}", e); + }) .is_ok(); });