From 54484a6ee7a9ac05429cab9ba4c2af38657c3541 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 20 Jun 2017 20:31:40 +0200 Subject: [PATCH] Add debug output to StoreId::new_baseless() --- libimagstore/src/storeid.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index 8f63d66d..59868d95 100644 --- a/libimagstore/src/storeid.rs +++ b/libimagstore/src/storeid.rs @@ -67,6 +67,7 @@ impl StoreId { } pub fn new_baseless(id: PathBuf) -> Result { + debug!("Trying to get a new baseless id from: {:?}", id); if id.is_absolute() { Err(SEK::StoreIdLocalPartAbsoluteError.into_error()) } else {