From f7bb458c5e5c25a0500822a76bd8741f4082bba0 Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Thu, 22 Dec 2022 02:01:11 +1100 Subject: [PATCH] Fix incorrect logging --- beacon_node/network/src/sync/network_context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beacon_node/network/src/sync/network_context.rs b/beacon_node/network/src/sync/network_context.rs index 19efd97c4..251ac92bb 100644 --- a/beacon_node/network/src/sync/network_context.rs +++ b/beacon_node/network/src/sync/network_context.rs @@ -197,7 +197,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlockBlobs => { debug!( self.log, - "Sending BlobsByRange request"; + "Sending BlocksByRange and BlobsByRange requests"; "method" => "Mixed by range request", "count" => request.count, "peer" => %peer_id, @@ -264,7 +264,7 @@ impl SyncNetworkContext { ExpectedBatchTy::OnlyBlockBlobs => { debug!( self.log, - "Sending backfill BlobsByRange request"; + "Sending backfill BlocksByRange and BlobsByRange requests"; "method" => "Mixed by range request", "count" => request.count, "peer" => %peer_id,