summaryrefslogtreecommitdiffstats
path: root/src/endpoint
diff options
context:
space:
mode:
Diffstat (limited to 'src/endpoint')
-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,
}
}