Merge pull request #289 from matthiasbeyer/imag-store/add-missing-trace-call

Trace error on retrieve failure
This commit is contained in:
Matthias Beyer 2016-03-26 13:57:12 +01:00
commit 9782ac53cd
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ pub fn retrieve(rt: &Runtime) {
.map(|e| print_entry(rt, scmd, e))
.map_err(|e| {
debug!("No entry.");
debug!("{}", e);
debug!("{}:", e);
trace_error(&e);
})
})
});