From b398197c075b06e4a30d665e8fb90e3e52864d75 Mon Sep 17 00:00:00 2001 From: Josef Zweck Date: Thu, 19 Feb 2026 00:46:06 +0100 Subject: [PATCH] Debug logging for config_entries (#163378) --- homeassistant/config_entries.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a89c5869a2f..1fb4c2785fe 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -798,6 +798,7 @@ class ConfigEntry[_DataT = Any]: self.domain, auth_message, ) + _LOGGER.debug("Full exception", exc_info=True) self.async_start_reauth(hass) except ConfigEntryNotReady as exc: message = str(exc) @@ -815,13 +816,14 @@ class ConfigEntry[_DataT = Any]: ) self._tries += 1 ready_message = f"ready yet: {message}" if message else "ready yet" - _LOGGER.debug( + _LOGGER.info( "Config entry '%s' for %s integration not %s; Retrying in %d seconds", self.title, self.domain, ready_message, wait_time, ) + _LOGGER.debug("Full exception", exc_info=True) if hass.state is CoreState.running: self._async_cancel_retry_setup = async_call_later(