Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: warning containes both the climate id and the sensor id #287

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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