Refactor TemperatureMonitor logging to remove sensor ID and simplify log format; update ScheduleMonitor to indicate HOLD mode when scheduling is disabled.

This commit is contained in:
2025-11-05 22:31:49 -05:00
parent 33e2944fd8
commit 2c10fdff62
2 changed files with 3 additions and 6 deletions

View File

@@ -47,6 +47,7 @@ class ScheduleMonitor:
def _find_active_schedule(self):
"""Find which schedule should be active right now."""
if not self.config.get('schedule_enabled', False):
# Schedule is disabled (HOLD mode)
return None
schedules = self.config.get('schedules', [])