Skip to content

Commit 1f8308e

Browse files
authored
Improve logging by demoting warnings (#612)
1 parent 256fd3c commit 1f8308e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/api/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1688,7 +1688,7 @@ func (api *RelayAPI) checkSubmissionSlotDetails(w http.ResponseWriter, log *logr
16881688
func (api *RelayAPI) checkBuilderEntry(w http.ResponseWriter, log *logrus.Entry, builderPubkey phase0.BLSPubKey) (*blockBuilderCacheEntry, bool) {
16891689
builderEntry, ok := api.blockBuildersCache[builderPubkey.String()]
16901690
if !ok {
1691-
log.Warnf("unable to read builder: %s from the builder cache, using low-prio and no collateral", builderPubkey.String())
1691+
log.Infof("unable to read builder: %s from the builder cache, using low-prio and no collateral", builderPubkey.String())
16921692
builderEntry = &blockBuilderCacheEntry{
16931693
status: common.BuilderStatus{
16941694
IsHighPrio: false,

0 commit comments

Comments
 (0)