Skip to content

Commit

Permalink
log::info changed to log::debug
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Jan 23, 2024
1 parent 581f765 commit 0cc130a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions plugins/zenoh-plugin-storage-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,13 @@ impl RunningPluginTrait for StorageRuntime {
let name = { zlock!(self.0).name.clone() };
let old = PluginConfig::try_from((&name, old))?;
let new = PluginConfig::try_from((&name, new))?;
log::debug!("config change requested for plugin '{}'", name);
log::debug!("old config: {:?}", &old);
log::debug!("new config: {:?}", &new);
let diffs = ConfigDiff::diffs(old, new);
log::debug!("applying diff: {:?}", &diffs);
{ zlock!(self.0).update(diffs) }?;
log::debug!("applying diff done");
Ok(None)
}

Expand Down

0 comments on commit 0cc130a

Please sign in to comment.