GUI: message box, typo in debug message fixed

This commit is contained in:
2026-02-24 14:43:35 +01:00
parent 7b6c417597
commit 1ed8554e5c
+1 -1
View File
@@ -58,7 +58,7 @@ def ring_current_low_check(parent, ring_current) -> bool:
too_low = ring_current < LOW_CURRENT_THRESHOLD
if too_low:
rc = round(ring_current, 2)
logger.debug(f"Ring current low {rc}")
logger.debug(f"Ring current low {rc} mA")
msg = f"Ring current is low: {rc} mA."
else:
logger.debug(f"Ring current: {round(ring_current, 2)} mA")