@@ -107,7 +107,7 @@ func (h *ProposalHandler) PrepareProposalHandler() sdk.PrepareProposalHandler {
107
107
// report the slinky specific PrepareProposal latency
108
108
defer func () {
109
109
totalLatency := time .Since (startTime )
110
- h .logger .Info (
110
+ h .logger .Debug (
111
111
"recording handle time metrics of prepare-proposal (seconds)" ,
112
112
"total latency" , totalLatency .Seconds (),
113
113
"wrapped prepare proposal latency" , wrappedPrepareProposalLatency .Seconds (),
@@ -130,7 +130,7 @@ func (h *ProposalHandler) PrepareProposalHandler() sdk.PrepareProposalHandler {
130
130
// for the current block.
131
131
voteExtensionsEnabled := ve .VoteExtensionsEnabled (ctx )
132
132
if voteExtensionsEnabled {
133
- h .logger .Info (
133
+ h .logger .Debug (
134
134
"injecting oracle data into proposal" ,
135
135
"height" , req .Height ,
136
136
"vote_extensions_enabled" , voteExtensionsEnabled ,
@@ -200,12 +200,12 @@ func (h *ProposalHandler) PrepareProposalHandler() sdk.PrepareProposalHandler {
200
200
201
201
return & cometabci.ResponsePrepareProposal {Txs : make ([][]byte , 0 )}, err
202
202
}
203
- h .logger .Info ("wrapped prepareProposalHandler produced response " , "txs" , len (resp .Txs ))
203
+ h .logger .Debug ("wrapped prepareProposalHandler produced response " , "txs" , len (resp .Txs ))
204
204
205
205
// Inject our VE Tx ( if extInfoBz is non-empty), and resize our response Txs to respect req.MaxTxBytes
206
206
resp .Txs = h .injectAndResize (resp .Txs , extInfoBz , req .MaxTxBytes + int64 (len (extInfoBz )))
207
207
208
- h .logger .Info (
208
+ h .logger .Debug (
209
209
"prepared proposal" ,
210
210
"txs" , len (resp .Txs ),
211
211
"vote_extensions_enabled" , voteExtensionsEnabled ,
@@ -261,7 +261,7 @@ func (h *ProposalHandler) ProcessProposalHandler() sdk.ProcessProposalHandler {
261
261
defer func () {
262
262
// record latency
263
263
totalLatency := time .Since (start )
264
- h .logger .Info (
264
+ h .logger .Debug (
265
265
"recording handle time metrics of process-proposal (seconds)" ,
266
266
"total latency" , totalLatency .Seconds (),
267
267
"wrapped prepare proposal latency" , wrappedProcessProposalLatency .Seconds (),
@@ -281,7 +281,7 @@ func (h *ProposalHandler) ProcessProposalHandler() sdk.ProcessProposalHandler {
281
281
282
282
voteExtensionsEnabled := ve .VoteExtensionsEnabled (ctx )
283
283
284
- h .logger .Info (
284
+ h .logger .Debug (
285
285
"processing proposal" ,
286
286
"height" , req .Height ,
287
287
"num_txs" , len (req .Txs ),
0 commit comments