diff --git a/custom_components/emporia_vue/__init__.py b/custom_components/emporia_vue/__init__.py index 71afb4a..2b9ce02 100644 --- a/custom_components/emporia_vue/__init__.py +++ b/custom_components/emporia_vue/__init__.py @@ -93,7 +93,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: DEVICE_INFORMATION = {} entry_data = entry.data - _LOGGER.warning("Setting up Emporia Vue with entry data: %s", entry_data) + _LOGGER.debug("Setting up Emporia Vue with entry data: %s", entry_data) email: str = entry_data[CONF_EMAIL] password: str = entry_data[CONF_PASSWORD] vue = PyEmVue() @@ -199,7 +199,7 @@ async def async_update_day_sensors() -> dict: update_interval=timedelta(minutes=1), ) await coordinator_1min.async_config_entry_first_refresh() - _LOGGER.info("1min Update data: %s", coordinator_1min.data) + _LOGGER.debug("1min Update data: %s", coordinator_1min.data) coordinator_1mon = None if ENABLE_1MON not in entry_data or entry_data[ENABLE_1MON]: coordinator_1mon = DataUpdateCoordinator( @@ -212,7 +212,7 @@ async def async_update_day_sensors() -> dict: update_interval=timedelta(hours=1), ) await coordinator_1mon.async_config_entry_first_refresh() - _LOGGER.info("1mon Update data: %s", coordinator_1mon.data) + _LOGGER.debug("1mon Update data: %s", coordinator_1mon.data) coordinator_day_sensor = None if ENABLE_1D not in entry_data or entry_data[ENABLE_1D]: diff --git a/custom_components/emporia_vue/config_flow.py b/custom_components/emporia_vue/config_flow.py index 72489da..d8f9160 100644 --- a/custom_components/emporia_vue/config_flow.py +++ b/custom_components/emporia_vue/config_flow.py @@ -124,10 +124,8 @@ async def async_step_reconfigure( """Handle the reconfiguration step.""" current_config = self._get_reconfigure_entry() if user_input is not None: - _LOGGER.warning( - "User input on reconfigure was the following: %s", user_input - ) - _LOGGER.warning("Current config is: %s", current_config.data) + _LOGGER.debug("User input on reconfigure was the following: %s", user_input) + _LOGGER.debug("Current config is: %s", current_config.data) info = current_config.data # if gid is not in current config, reauth and get gid again if (