From 33371bdd20104d2e792190c43670e43310c7669c Mon Sep 17 00:00:00 2001 From: rappenze Date: Mon, 28 Mar 2022 17:23:44 +0200 Subject: [PATCH] Change fibaro disconnect log level to debug (#68783) --- homeassistant/components/fibaro/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/fibaro/__init__.py b/homeassistant/components/fibaro/__init__.py index 00f8c4da92d..fffc30580d8 100644 --- a/homeassistant/components/fibaro/__init__.py +++ b/homeassistant/components/fibaro/__init__.py @@ -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()