From e157a906bd31486db4b0eae24cc27f3dd485819b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 4 Jun 2017 19:13:06 +0200 Subject: [PATCH] Add debug output to Store::save_to --- libimagstore/src/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 2f2867a3..604cfcc3 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -588,6 +588,7 @@ impl Store { /// Save a copy of the Entry in another place pub fn save_to(&self, entry: &FileLockEntry, new_id: StoreId) -> Result<()> { + debug!("Saving '{}' to '{}'", entry.get_location(), new_id); self.save_to_other_location(entry, new_id, false) }