Skip to content

Commit

Permalink
Improve logging by demoting warnings (#612)
Browse files Browse the repository at this point in the history
  • Loading branch information
avalonche committed Apr 26, 2024
1 parent 256fd3c commit 1f8308e
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 @@ -1688,7 +1688,7 @@ func (api *RelayAPI) checkSubmissionSlotDetails(w http.ResponseWriter, log *logr
func (api *RelayAPI) checkBuilderEntry(w http.ResponseWriter, log *logrus.Entry, builderPubkey phase0.BLSPubKey) (*blockBuilderCacheEntry, bool) {
builderEntry, ok := api.blockBuildersCache[builderPubkey.String()]
if !ok {
log.Warnf("unable to read builder: %s from the builder cache, using low-prio and no collateral", builderPubkey.String())
log.Infof("unable to read builder: %s from the builder cache, using low-prio and no collateral", builderPubkey.String())
builderEntry = &blockBuilderCacheEntry{
status: common.BuilderStatus{
IsHighPrio: false,
Expand Down

0 comments on commit 1f8308e

Please sign in to comment.