Skip to content

Commit

Permalink
Merge pull request ethereum#61 from lochjin/v1.14.11-qng
Browse files Browse the repository at this point in the history
feat:modify insert stats report log level to debug
  • Loading branch information
dindinw authored Oct 27, 2024
2 parents 0414844 + fc0fefa commit fda1e66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/blockchain_insert.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ func (st *insertStats) report(chain []*types.Block, index int, snapDiffItems, sn
context = append(context, []interface{}{"ignored", st.ignored}...)
}
if setHead {
log.Info("Imported new chain segment", context...)
log.Debug("Imported new chain segment", context...)
} else {
log.Info("Imported new potential chain segment", context...)
log.Debug("Imported new potential chain segment", context...)
}
// Bump the stats reported to the next section
*st = insertStats{startTime: now, lastIndex: index + 1}
Expand Down

0 comments on commit fda1e66

Please sign in to comment.