We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657094f commit bd77a65Copy full SHA for bd77a65
crates/module-system/sov-modules-stf-blueprint/src/lib.rs
@@ -443,9 +443,9 @@ where
443
{
444
let mut pinned_cache = pre_state.try_load_saved_pinned_cache();
445
if pinned_cache.is_none() {
446
- tracing::debug!("No pinned cache found in storage. Populating from db if supported - this may take a while...");
+ tracing::trace!("No pinned cache found in storage. Populating from db if supported - this may take a while...");
447
pinned_cache = RT::populate_pinned_cache(&pre_state);
448
- tracing::debug!("Finished populating pinned cache from db.");
+ tracing::trace!("Finished populating pinned cache from db.");
449
}
450
pinned_cache
451
0 commit comments