diff --git a/validator_client/beacon_node_fallback/src/lib.rs b/validator_client/beacon_node_fallback/src/lib.rs index 5ee6d7ab82..48985f3256 100644 --- a/validator_client/beacon_node_fallback/src/lib.rs +++ b/validator_client/beacon_node_fallback/src/lib.rs @@ -351,12 +351,11 @@ impl CandidateBeaconNode { ); } else if beacon_node_spec.fulu_fork_epoch != spec.fulu_fork_epoch { warn!( - log, - "Beacon node has mismatched Fulu fork epoch"; - "endpoint" => %self.beacon_node, - "endpoint_fulu_fork_epoch" => ?beacon_node_spec.fulu_fork_epoch, - "hint" => UPDATE_REQUIRED_LOG_HINT, - ); + endpoint = %self.beacon_node, + endpoint_fulu_fork_epoc = ?beacon_node_spec.fulu_fork_epoch, + hint = UPDATE_REQUIRED_LOG_HINT, + "Beacon node has mismatched Fulu fork epoch" + ); } Ok(()) diff --git a/validator_client/validator_services/src/attestation_service.rs b/validator_client/validator_services/src/attestation_service.rs index baaef0bd39..76bba37a81 100644 --- a/validator_client/validator_services/src/attestation_service.rs +++ b/validator_client/validator_services/src/attestation_service.rs @@ -457,12 +457,11 @@ impl AttestationService ?e, - "committee_index" => attestation_data.index, - "slot" => slot.as_u64(), - "type" => "unaggregated", + error = ?e, + committee_index = attestation_data.index, + slot = slot.as_u64(), + "type" = "unaggregated", + "Unable to convert to SingleAttestation", ); None }