Remove fmt.Println from committee cache (#9677)

This commit is contained in:
Radosław Kapka
2021-09-27 13:18:20 +02:00
committed by GitHub
parent 6eb158c16a
commit bf41fd854d

View File

@@ -5,7 +5,6 @@ package cache
import (
"context"
"errors"
"fmt"
"math"
"sync"
"time"
@@ -122,7 +121,6 @@ func (c *CommitteeCache) ActiveIndices(ctx context.Context, seed [32]byte) ([]ty
if exists {
CommitteeCacheHit.Inc()
} else {
fmt.Println("cache miss active indices")
CommitteeCacheMiss.Inc()
return nil, nil
}