Skip to content

Commit bd77a65

Browse files
authored
Move pinned_cache.is_none() to trace from debug (#2302)
1 parent 657094f commit bd77a65

File tree

1 file changed

+2
-2
lines changed
  • crates/module-system/sov-modules-stf-blueprint/src

1 file changed

+2
-2
lines changed

crates/module-system/sov-modules-stf-blueprint/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,9 +443,9 @@ where
443443
{
444444
let mut pinned_cache = pre_state.try_load_saved_pinned_cache();
445445
if pinned_cache.is_none() {
446-
tracing::debug!("No pinned cache found in storage. Populating from db if supported - this may take a while...");
446+
tracing::trace!("No pinned cache found in storage. Populating from db if supported - this may take a while...");
447447
pinned_cache = RT::populate_pinned_cache(&pre_state);
448-
tracing::debug!("Finished populating pinned cache from db.");
448+
tracing::trace!("Finished populating pinned cache from db.");
449449
}
450450
pinned_cache
451451
}

0 commit comments

Comments
 (0)