diff --git a/frontend/src/components/layout/statusbar.rs b/frontend/src/components/layout/statusbar.rs
index 97d39c8..1fa4f19 100644
--- a/frontend/src/components/layout/statusbar.rs
+++ b/frontend/src/components/layout/statusbar.rs
@@ -117,12 +117,9 @@ pub fn StatusBar() -> impl IntoView {
@@ -131,7 +128,7 @@ 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);
- logging::log!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}",
+ logging::error!("Down Active Check: current={} (i64), val={} (i64), diff={}, match={}",
current,
val,
(current - val).abs(),
@@ -180,12 +177,9 @@ pub fn StatusBar() -> impl IntoView {
@@ -235,12 +229,9 @@ pub fn StatusBar() -> impl IntoView {