Skip to content

Commit

Permalink
debug cleanup entities
Browse files Browse the repository at this point in the history
  • Loading branch information
grimmpp committed Feb 15, 2024
1 parent 20c5f36 commit be07e7f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_components/eltako/eltako_integration_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit be07e7f

Please sign in to comment.