@@ -21,7 +21,7 @@ use std::{
2121 cmp:: { Ord , Ordering , PartialOrd } ,
2222 sync:: mpsc,
2323} ;
24- use tracing:: { instrument , trace , warn } ;
24+ use tracing:: { debug , instrument , trace } ;
2525
2626/// The maximum length of a path, in nibbles, which belongs to the upper subtrie of a
2727/// [`ParallelSparseTrie`]. All longer paths belong to a lower subtrie.
@@ -334,7 +334,7 @@ impl SparseTrieInterface for ParallelSparseTrie {
334334 if let Some ( reveal_path) = reveal_path {
335335 let subtrie = self . subtrie_for_path_mut ( & reveal_path) ;
336336 if subtrie. nodes . get ( & reveal_path) . expect ( "node must exist" ) . is_hash ( ) {
337- warn ! (
337+ debug ! (
338338 target: "trie::parallel_sparse" ,
339339 child_path = ?reveal_path,
340340 leaf_full_path = ?full_path,
@@ -615,7 +615,7 @@ impl SparseTrieInterface for ParallelSparseTrie {
615615 let remaining_child_node =
616616 match remaining_child_subtrie. nodes . get ( & remaining_child_path) . unwrap ( ) {
617617 SparseNode :: Hash ( _) => {
618- warn ! (
618+ debug ! (
619619 target: "trie::parallel_sparse" ,
620620 child_path = ?remaining_child_path,
621621 leaf_full_path = ?full_path,
@@ -1542,7 +1542,7 @@ impl SparseSubtrie {
15421542 LeafUpdateStep :: Complete { reveal_path, .. } => {
15431543 if let Some ( reveal_path) = reveal_path {
15441544 if self . nodes . get ( & reveal_path) . expect ( "node must exist" ) . is_hash ( ) {
1545- warn ! (
1545+ debug ! (
15461546 target: "trie::parallel_sparse" ,
15471547 child_path = ?reveal_path,
15481548 leaf_full_path = ?full_path,
0 commit comments