diff --git a/api/handlers/exporter.go b/api/handlers/exporter.go index d54dc1f25a..8851b5eac7 100644 --- a/api/handlers/exporter.go +++ b/api/handlers/exporter.go @@ -2,7 +2,6 @@ package handlers import ( "fmt" - "log" "net/http" "github.com/attestantio/go-eth2-client/spec/phase0" @@ -65,8 +64,6 @@ func (e *Exporter) Decideds(w http.ResponseWriter, r *http.Request) error { } for _, pubKey := range request.PubKeys { msgID := convert.NewMsgID(e.DomainType, pubKey, runnerRole) - log.Printf("Generated MsgID: %x for role: %v, pubKey: %s", msgID, role, pubKey) - from := phase0.Slot(request.From) to := phase0.Slot(request.To) diff --git a/api/types.go b/api/types.go index e0bfa0e018..a498bba445 100644 --- a/api/types.go +++ b/api/types.go @@ -4,7 +4,6 @@ import ( "encoding/hex" "encoding/json" "errors" - "log" "strconv" "strings" @@ -81,7 +80,6 @@ func (r *Role) Bind(value string) error { return err } *r = Role(role) - log.Printf("Binding role: %s to %v", value, role) return nil } diff --git a/ibft/storage/store.go b/ibft/storage/store.go index 505e063564..9d55caef16 100644 --- a/ibft/storage/store.go +++ b/ibft/storage/store.go @@ -3,7 +3,6 @@ package storage import ( "encoding/binary" "fmt" - "log" "github.com/attestantio/go-eth2-client/spec/phase0" "github.com/pkg/errors" @@ -192,8 +191,6 @@ func (i *ibftStorage) GetParticipantsInRange(identifier convert.MessageID, from, } func (i *ibftStorage) GetParticipants(identifier convert.MessageID, slot phase0.Slot) ([]spectypes.OperatorID, error) { - log.Printf("Fetching participants for identifier: %x at slot: %d", identifier, slot) - val, found, err := i.get(participantsKey, identifier[:], uInt64ToByteSlice(uint64(slot))) if err != nil { return nil, err