mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-17 08:30:39 +00:00
core/rawdb: downgrade log level in chain freezer (#32253)
This commit is contained in:
parent
b2a0e08808
commit
83aa643621
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ func (f *chainFreezer) Close() error {
|
|||
func (f *chainFreezer) readHeadNumber(db ethdb.KeyValueReader) uint64 {
|
||||
hash := ReadHeadBlockHash(db)
|
||||
if hash == (common.Hash{}) {
|
||||
log.Error("Head block is not reachable")
|
||||
log.Warn("Head block is not reachable")
|
||||
return 0
|
||||
}
|
||||
number, ok := ReadHeaderNumber(db, hash)
|
||||
|
|
|
|||
Loading…
Reference in a new issue