File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lib/lambda_ethereum_consensus/state_transition Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -97,13 +97,13 @@ defmodule LambdaEthereumConsensus.StateTransition do
9797 # Cache state root
9898 previous_state_root =
9999 if slot_previous_roots do
100- Logger . info ( "Processing slot #{ state . slot } , previous state root",
100+ Logger . debug ( "Slot #{ state . slot } : previous state root in cache ",
101101 root: slot_previous_roots . state_root
102102 )
103103
104104 slot_previous_roots . state_root
105105 else
106- Logger . warning ( "Processing slot #{ state . slot } , no previous state root" )
106+ Logger . warning ( "Slot #{ state . slot } : no previous state root in cache " )
107107 Ssz . hash_tree_root! ( state )
108108 end
109109
@@ -128,13 +128,13 @@ defmodule LambdaEthereumConsensus.StateTransition do
128128 # Cache block root
129129 previous_block_root =
130130 if slot_previous_roots do
131- Logger . info ( "Processing slot #{ state . slot } , previous block root",
131+ Logger . debug ( "Slot #{ state . slot } , previous block root in cache ",
132132 root: slot_previous_roots . block_root
133133 )
134134
135135 slot_previous_roots . block_root
136136 else
137- Logger . warning ( "Processing slot #{ state . slot } , no previous block root" )
137+ Logger . warning ( "Slot #{ state . slot } , no previous block root in cache " )
138138 Ssz . hash_tree_root! ( state . latest_block_header )
139139 end
140140
You can’t perform that action at this time.
0 commit comments