From 208fa84a279d99b3a30a0ee1f899e6898a4a0a05 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 30 Apr 2020 19:40:31 -0500 Subject: [PATCH] Update excess powerwall logging to be debug (#34994) --- homeassistant/components/powerwall/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/powerwall/__init__.py b/homeassistant/components/powerwall/__init__.py index 336c3ac0bff..fa9c81533e7 100644 --- a/homeassistant/components/powerwall/__init__.py +++ b/homeassistant/components/powerwall/__init__.py @@ -124,9 +124,9 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry): async def async_update_data(): """Fetch data from API endpoint.""" # Check if we had an error before - _LOGGER.info("Checking if update failed") + _LOGGER.debug("Checking if update failed") if not hass.data[DOMAIN][entry.entry_id][POWERWALL_API_CHANGED]: - _LOGGER.info("Updating data") + _LOGGER.debug("Updating data") try: return await hass.async_add_executor_job( _fetch_powerwall_data, power_wall