summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-16 16:26:57 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-06-16 16:26:58 +0200
commitedba2de22743ed7aeb5f2661f8c23fee681711bf (patch)
tree56d207d7b90321daf93f0a3cf05ab0877c325aae
parente680a38fac648516c33562aee3fefbaee1f770a4 (diff)
Add error explanation trace output
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/endpoint/configured.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/endpoint/configured.rs b/src/endpoint/configured.rs
index de60791..7dc2ba7 100644
--- a/src/endpoint/configured.rs
+++ b/src/endpoint/configured.rs
@@ -622,7 +622,10 @@ impl<'a> PreparedContainer<'a> {
found = Some(path);
break;
},
- Err(e) => return Err(e),
+ Err(e) => {
+ trace!("Failed to join '{:?}' + '{:?}'", release_store.root_path(), art.display());
+ return Err(e)
+ },
Ok(None) => continue,
}
}