diff --git a/beacon_node/network/src/sync/range_sync/chain_collection.rs b/beacon_node/network/src/sync/range_sync/chain_collection.rs index 13d1bef3c9..d75e18e98c 100644 --- a/beacon_node/network/src/sync/range_sync/chain_collection.rs +++ b/beacon_node/network/src/sync/range_sync/chain_collection.rs @@ -480,7 +480,7 @@ impl ChainCollection { debug_assert_eq!(chain.target_head_slot, target_head_slot); if let Err(remove_reason) = chain.add_peer(network, peer) { if remove_reason.is_critical() { - error!(self.log, "Chain removed after adding peer"; "chain" => id, "reason" => ?remove_reason); + crit!(self.log, "Chain removed after adding peer"; "chain" => id, "reason" => ?remove_reason); } else { error!(self.log, "Chain removed after adding peer"; "chain" => id, "reason" => ?remove_reason); }