diff --git a/custom_components/eltako/eltako_integration_init.py b/custom_components/eltako/eltako_integration_init.py index d49690b..7ba291c 100644 --- a/custom_components/eltako/eltako_integration_init.py +++ b/custom_components/eltako/eltako_integration_init.py @@ -83,7 +83,10 @@ def cleanup_unavailable_entities(hass: HomeAssistant): for e in hass.config_entries.async_entries(): - LOGGER.debug(f"CONFIG ENTRIES: entry_id {e.entry_id}, unique_id: {e.unique_id}") + LOGGER.debug(f"CONFIG ENTRIES: entry_id {e.entry_id}, unique_id: {e.unique_id}, title: {e.title}, domain: {e.domain}") + for key, d in e.data.items(): + LOGGER.debug(f"CONF ENTR DATA: key: {key} => {d.__dict__}") + dr.async_cleanup(hass, device_reg, entity_registry)