Add debug output to Store::walk

This commit is contained in:
Matthias Beyer 2017-06-04 19:06:54 +02:00
parent a3466ae548
commit bc80a3b7d5

View file

@ -457,6 +457,7 @@ impl Store {
/// The difference between a `Walk` and a `StoreIdIterator` is that with a `Walk`, one can find
/// "collections" (folders).
pub fn walk<'a>(&'a self, mod_name: &str) -> Walk {
debug!("Creating Walk object for {}", mod_name);
Walk::new(self.path().clone(), mod_name)
}