From 61ab4bf7ca778f0b023703048363dc88db5d38cf Mon Sep 17 00:00:00 2001 From: terence Date: Sat, 3 Feb 2024 11:20:04 -0800 Subject: [PATCH] Rename block by range request log (#13561) --- beacon-chain/sync/rpc_beacon_blocks_by_range.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/sync/rpc_beacon_blocks_by_range.go b/beacon-chain/sync/rpc_beacon_blocks_by_range.go index 5f603b322..3e7f70382 100644 --- a/beacon-chain/sync/rpc_beacon_blocks_by_range.go +++ b/beacon-chain/sync/rpc_beacon_blocks_by_range.go @@ -30,7 +30,7 @@ func (s *Service) beaconBlocksByRangeRPCHandler(ctx context.Context, msg interfa if !ok { return errors.New("message is not type *pb.BeaconBlockByRangeRequest") } - log.WithField("start-slot", m.StartSlot).WithField("count", m.Count).Debug("BeaconBlocksByRangeRequest") + log.WithField("startSlot", m.StartSlot).WithField("count", m.Count).Debug("Serving block by range request") rp, err := validateRangeRequest(m, s.cfg.clock.CurrentSlot()) if err != nil { s.writeErrorResponseToStream(responseCodeInvalidRequest, err.Error(), stream)