Skip to content

Commit

Permalink
changed log warn to trace in get node from db
Browse files Browse the repository at this point in the history
  • Loading branch information
ssd04 committed Jan 9, 2023
1 parent 094f227 commit 0a17029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trie/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func getNodeFromDBAndDecode(n []byte, db common.DBWriteCacher, marshalizer marsh
if err != nil {
dbWithID, ok := db.(dbWriteCacherWithIdentifier)
if !ok {
log.Warn("wrong type assertion on", common.GetNodeFromDBErrorString, "error", err, "key", n)
log.Trace("wrong type assertion on", common.GetNodeFromDBErrorString, "error", err, "key", n)
return nil, errors.NewGetNodeFromDBErrWithKey(n, err, "")
}

Expand Down

0 comments on commit 0a17029

Please sign in to comment.