diff --git a/homeassistant/helpers/intent.py b/homeassistant/helpers/intent.py index d7c0f90e2f94b..8af5dba29f5da 100644 --- a/homeassistant/helpers/intent.py +++ b/homeassistant/helpers/intent.py @@ -140,6 +140,7 @@ async def async_handle( except IntentError: raise # bubble up intent related errors except Exception as err: + _LOGGER.exception("Error handling %s", intent_type) raise IntentUnexpectedError(f"Error handling {intent_type}") from err return result