Change fibaro disconnect log level to debug (#68783)

This commit is contained in:
rappenze
2022-03-28 17:23:44 +02:00
committed by GitHub
parent c763d23cbb
commit 33371bdd20

View File

@@ -439,7 +439,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Unload a config entry."""
_LOGGER.info("Shutting down Fibaro connection")
_LOGGER.debug("Shutting down Fibaro connection")
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
hass.data[DOMAIN][entry.entry_id][FIBARO_CONTROLLER].disable_state_handler()