Add debug output to Store::update

This commit is contained in:
Matthias Beyer 2017-06-04 19:08:47 +02:00
parent bc80a3b7d5
commit ef0a76a02f

View file

@ -466,6 +466,7 @@ impl Store {
/// See `Store::_update()`. /// See `Store::_update()`.
/// ///
pub fn update<'a>(&'a self, entry: &mut FileLockEntry<'a>) -> Result<()> { pub fn update<'a>(&'a self, entry: &mut FileLockEntry<'a>) -> Result<()> {
debug!("Updating FileLockEntry at '{}'", entry.get_location());
self._update(entry, false).map_err_into(SEK::UpdateCallError) self._update(entry, false).map_err_into(SEK::UpdateCallError)
} }