From b842d8ce1dfaacd20fb852c003294a3a43d539f4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rados=C5=82aw=20Kapka?= <rkapka@wp.pl>
Date: Fri, 16 Feb 2024 15:02:56 +0100
Subject: [PATCH] Remove leftover log (#13627)

---
 validator/client/beacon-api/submit_aggregate_selection_proof.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/validator/client/beacon-api/submit_aggregate_selection_proof.go b/validator/client/beacon-api/submit_aggregate_selection_proof.go
index 48de75bff..bac592f38 100644
--- a/validator/client/beacon-api/submit_aggregate_selection_proof.go
+++ b/validator/client/beacon-api/submit_aggregate_selection_proof.go
@@ -12,7 +12,6 @@ import (
 	"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
 	ethpb "github.com/prysmaticlabs/prysm/v5/proto/prysm/v1alpha1"
 	"github.com/prysmaticlabs/prysm/v5/time/slots"
-	"github.com/sirupsen/logrus"
 )
 
 func (c *beaconApiValidatorClient) submitAggregateSelectionProof(ctx context.Context, in *ethpb.AggregateSelectionRequest) (*ethpb.AggregateSelectionResponse, error) {
@@ -66,7 +65,6 @@ func (c *beaconApiValidatorClient) submitAggregateSelectionProof(ctx context.Con
 		return nil, errors.Wrap(err, "failed to calculate attestation data root")
 	}
 
-	logrus.Infof("Aggregator requested attestation %#x", attestationDataRoot)
 	aggregateAttestationResponse, err := c.getAggregateAttestation(ctx, in.Slot, attestationDataRoot[:])
 	if err != nil {
 		return nil, err