From 8fd345c8777a58605d2eb910c3e03bb128bc7623 Mon Sep 17 00:00:00 2001 From: Tan Chee Keong Date: Tue, 1 Apr 2025 21:12:33 +0800 Subject: [PATCH] move log --- validator_client/validator_services/src/sync.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/validator_client/validator_services/src/sync.rs b/validator_client/validator_services/src/sync.rs index d24a5ad191..4b178e9633 100644 --- a/validator_client/validator_services/src/sync.rs +++ b/validator_client/validator_services/src/sync.rs @@ -504,14 +504,14 @@ pub async fn fill_in_aggregation_proofs( current_slot: Slot, pre_compute_slot: Slot, ) { + debug!( + period = sync_committee_period, + %current_slot, + %pre_compute_slot, + "Calculating sync selection proofs" + ); // Generate selection proofs for each validator at each slot, one slot at a time. for slot in (current_slot.as_u64()..=pre_compute_slot.as_u64()).map(Slot::new) { - debug!( - period = sync_committee_period, - %current_slot, - %pre_compute_slot, - "Calculating sync selection proofs" - ); if !duties_service.distributed { // For non-distributed mode let mut validator_proofs = vec![];