Merge pull request #289 from matthiasbeyer/imag-store/add-missing-trace-call
Trace error on retrieve failure
This commit is contained in:
commit
9782ac53cd
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
})
|
||||
})
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue