Use unused variable: e

This commit is contained in:
Matthias Beyer 2016-01-05 16:14:15 +01:00
parent b0a8fd642c
commit 6c6851cc2b

View file

@ -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();
});