From 4bcb9988882625b143dbc289e2d51f6a230c78d3 Mon Sep 17 00:00:00 2001 From: spinline Date: Wed, 4 Feb 2026 17:42:12 +0300 Subject: [PATCH] chore: force debug logging for speed limits --- frontend/src/components/layout/statusbar.rs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/layout/statusbar.rs b/frontend/src/components/layout/statusbar.rs index 4613b30..97d39c8 100644 --- a/frontend/src/components/layout/statusbar.rs +++ b/frontend/src/components/layout/statusbar.rs @@ -131,14 +131,12 @@ pub fn StatusBar() -> impl IntoView { limits.clone().into_iter().map(|(val, label)| { let is_active = move || { let current = stats.get().down_limit.unwrap_or(0); - if down_menu_open.get() { - logging::log!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}", - current, - val, - (current - val).abs(), - (current - val).abs() < 1024 - ); - } + logging::log!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}", + current, + val, + (current - val).abs(), + (current - val).abs() < 1024 + ); (current - val).abs() < 1024 }; view! {