@@ -776,7 +776,7 @@ impl<N: Network, P: FinalizeStorage<N>> FinalizeStore<N, P> {
776776 block_height : u32 ,
777777 ) {
778778
779- tracing:: info !(
779+ tracing:: debug !(
780780 target: "slipstream" ,
781781 "notify_staking_reward(): is_finalize_mode={} staker={staker} validator={validator} reward={reward}" ,
782782 self . is_finalize_mode. load( Ordering :: SeqCst )
@@ -927,7 +927,7 @@ impl<N: Network, P: FinalizeStorage<N>> FinalizeStoreTrait<N> for FinalizeStore<
927927 ) -> Result < FinalizeOperation < N > > {
928928 // Serialize before moving, if a plugin notification may be needed.
929929 #[ cfg( all( feature = "history" , feature = "slipstream-plugins" ) ) ]
930- tracing:: info !(
930+ tracing:: debug !(
931931 target: "slipstream" ,
932932 "update_key_value: is_finalize_mode={} program={program_id} mapping={mapping_name}" ,
933933 self . is_finalize_mode. load( Ordering :: SeqCst )
@@ -968,7 +968,7 @@ impl<N: Network, P: FinalizeStorage<N>> FinalizeStoreTrait<N> for FinalizeStore<
968968 #[ cfg( all( not( feature = "history" ) , feature = "slipstream-plugins" ) ) ]
969969 let height = 0u32 ;
970970 if let Some ( mgr) = self . slipstream_plugin_manager . get ( ) {
971- tracing:: info !( target: "slipstream" , "dispatching notify_mapping_update to plugin manager" ) ;
971+ tracing:: debug !( target: "slipstream" , "dispatching notify_mapping_update to plugin manager" ) ;
972972 match mgr. read ( ) {
973973 Ok ( plugin_mgr) => plugin_mgr. notify_mapping_update ( & pid, & mname, & k, & v, height) ,
974974 Err ( e) => tracing:: warn!(
@@ -1011,7 +1011,7 @@ impl<N: Network, P: FinalizeStorage<N>> FinalizeStore<N, P> {
10111011 entries : Vec < ( Plaintext < N > , Value < N > ) > ,
10121012 ) -> Result < FinalizeOperation < N > > {
10131013 #[ cfg( all( feature = "history" , feature = "slipstream-plugins" ) ) ]
1014- tracing:: info !(
1014+ tracing:: debug !(
10151015 target: "slipstream" ,
10161016 "replace_mapping: is_finalize_mode={} program={program_id} mapping={mapping_name}" ,
10171017 self . is_finalize_mode. load( Ordering :: SeqCst )
0 commit comments