Log unique_id of device when ESPHome connection fails (#44152)

pull/44154/head
Olivér Falvai 2020-12-12 18:44:45 +01:00 committed by GitHub
parent 0696724506
commit dd4147fbaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -257,7 +257,12 @@ async def _setup_auto_reconnect_logic(
try:
await cli.connect(on_stop=try_connect, login=True)
except APIConnectionError as error:
_LOGGER.info("Can't connect to ESPHome API for %s: %s", host, error)
_LOGGER.info(
"Can't connect to ESPHome API for %s (%s): %s",
entry.unique_id,
host,
error,
)
# Schedule re-connect in event loop in order not to delay HA
# startup. First connect is scheduled in tracked tasks.
data.reconnect_task = hass.loop.create_task(