Skip to content

Commit

Permalink
execution: lower insert blocks verbosity (#13621)
Browse files Browse the repository at this point in the history
  • Loading branch information
taratorio authored Jan 30, 2025
1 parent ba03429 commit 6449a1a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions turbo/execution/eth1/inserters.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import (

"github.com/erigontech/erigon-lib/common/metrics"
execution "github.com/erigontech/erigon-lib/gointerfaces/executionproto"
"github.com/erigontech/erigon-lib/log/v3"
"github.com/erigontech/erigon/core/rawdb"
"github.com/erigontech/erigon/turbo/execution/eth1/eth1_utils"
)
Expand Down Expand Up @@ -84,7 +83,7 @@ func (e *EthereumExecutionModule) InsertBlocks(ctx context.Context, req *executi
if _, err := rawdb.WriteRawBodyIfNotExists(tx, header.Hash(), height, body); err != nil {
return nil, fmt.Errorf("ethereumExecutionModule.InsertBlocks: writeBody: %s", err)
}
log.Debug("Inserted block", "hash", header.Hash(), "number", header.Number)
e.logger.Trace("Inserted block", "hash", header.Hash(), "number", header.Number)
}
if err := tx.Commit(); err != nil {
return nil, fmt.Errorf("ethereumExecutionModule.InsertHeaders: could not commit: %s", err)
Expand Down

0 comments on commit 6449a1a

Please sign in to comment.