Skip to content

Commit

Permalink
change specific error log to info because it's expected nowadays (#574)
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris authored Jan 25, 2024
1 parent 0346f6f commit 1ffdc1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/api/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ func (api *RelayAPI) handleGetPayload(w http.ResponseWriter, req *http.Request)
defer func() {
bidTrace, err := api.redis.GetBidTrace(uint64(slot), proposerPubkey.String(), blockHash.String())
if err != nil {
log.WithError(err).Error("failed to get bidTrace for delivered payload from redis")
log.WithError(err).Info("failed to get bidTrace for delivered payload from redis")
return
}

Expand Down

0 comments on commit 1ffdc1a

Please sign in to comment.