Use unused variable: e
This commit is contained in:
parent
b0a8fd642c
commit
6c6851cc2b
1 changed files with 4 additions and 1 deletions
|
@ -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();
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue