diff --git a/applications/tari_base_node/src/commands/command/status.rs b/applications/tari_base_node/src/commands/command/status.rs index f46a507f1e..b6a4cb32b5 100644 --- a/applications/tari_base_node/src/commands/command/status.rs +++ b/applications/tari_base_node/src/commands/command/status.rs @@ -130,16 +130,6 @@ impl CommandContext { num_active_rpc_sessions, self.config.base_node.p2p.rpc_max_simultaneous_sessions ), ); - if full_log { - status_line.add_field( - "RandomX", - format!( - "#{} with flags {:?}", - self.state_machine_info.borrow().randomx_vm_cnt, - self.state_machine_info.borrow().randomx_vm_flags - ), - ); - } match self.comms.listening_info().liveness_status() { LivenessStatus::Disabled => {}, @@ -147,13 +137,24 @@ impl CommandContext { status_line.add("⏳️️"); }, LivenessStatus::Unreachable => { - status_line.add("‼️"); + status_line.add("️🔌"); }, LivenessStatus::Live(latency) => { status_line.add(format!("⚡️ {:.2?}", latency)); }, } + if full_log { + status_line.add_field( + "RandomX", + format!( + "#{} with flags {:?}", + self.state_machine_info.borrow().randomx_vm_cnt, + self.state_machine_info.borrow().randomx_vm_flags + ), + ); + } + let target = "base_node::app::status"; match output { StatusLineOutput::StdOutAndLog => {