Skip to content

Commit

Permalink
chore: warning containes both the climate id and the sensor id
Browse files Browse the repository at this point in the history
Fixes #286
  • Loading branch information
= authored and swingerman committed Sep 5, 2024
1 parent 0c45e9e commit 5121759
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion custom_components/dual_smart_thermostat/climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,11 @@ async def _async_sensor_not_responding(self, now: datetime | None = None) -> Non
now - state.last_updated if now and state else "---",
)
if self._is_device_active:
_LOGGER.warning("Sensor is stalled, call the emergency stop")
_LOGGER.warning(
"Climate (%s) - sensor (%s) is stalled, call the emergency stop",
self.unique_id,
self.sensor_entity_id,
)
await self.hvac_device.async_turn_off()
self._hvac_action_reason = HVACActionReason.TEMPERATURE_SENSOR_STALLED
self.async_write_ha_state()
Expand Down

0 comments on commit 5121759

Please sign in to comment.