1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00

Use new format for logging exception - homeassistent/api.py (#3182)

This commit is contained in:
Finn
2021-10-01 14:18:23 +02:00
committed by GitHub
parent d33beb06cd
commit 0433d72ae6

View File

@@ -49,8 +49,9 @@ class HomeAssistantAPI(CoreSysAttributes):
ssl=False,
) as resp:
if resp.status != 200:
_LOGGER.error("Can't update Home Assistant access token!")
raise HomeAssistantAuthError()
raise HomeAssistantAuthError(
"Can't update Home Assistant access token!", _LOGGER.error
)
_LOGGER.info("Updated Home Assistant API token")
tokens = await resp.json()