From edba2de22743ed7aeb5f2661f8c23fee681711bf Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 16 Jun 2021 16:26:57 +0200 Subject: Add error explanation trace output Signed-off-by: Matthias Beyer --- src/endpoint/configured.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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, } } -- cgit v1.2.3