diff --git a/custom_components/honda_recall_check/sensor.py b/custom_components/honda_recall_check/sensor.py index ac896ea..5aa119d 100644 --- a/custom_components/honda_recall_check/sensor.py +++ b/custom_components/honda_recall_check/sensor.py @@ -42,8 +42,7 @@ async def async_update(self): try: self._recalls = await self.hass.async_add_executor_job(self._api.check_recall) except HondaRecallAPIError as e: - # AquĆ­ podemos hacer un log del error si queremos. - # logger.error(f"Error al obtener recalls: {e}") + logger.error(f"Error al obtener recalls: {e}") self._recalls = []