From a3466ae5480dc98b1a6e833fb3613178c2dc3a81 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 4 Jun 2017 19:06:22 +0200 Subject: [PATCH] Add debug output to Store::retrieve_for_module --- libimagstore/src/store.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index a842cd0b..10f56cf2 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -438,6 +438,8 @@ impl Store { let mut path = self.path().clone(); path.push(mod_name); + debug!("Retrieving for module: '{}'", mod_name); + path.to_str() .ok_or(SE::new(SEK::EncodingError, None)) .and_then(|path| {