From d3fe23cbe7eeccab2aa6bc1c44e08c8f528e5566 Mon Sep 17 00:00:00 2001 From: Alexander Rey Date: Thu, 29 Dec 2022 15:47:44 -0500 Subject: [PATCH] Change existing location warning to info --- custom_components/pirateweather/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/pirateweather/__init__.py b/custom_components/pirateweather/__init__.py index b4ef0f1..651cb55 100644 --- a/custom_components/pirateweather/__init__.py +++ b/custom_components/pirateweather/__init__.py @@ -103,7 +103,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: # we have to create a new one if unique_location in hass.data[DOMAIN]: weather_coordinator = hass.data[DOMAIN].get(unique_location) - _LOGGER.warning('An existing weather coordinator already exists for this location. Using that one instead') + _LOGGER.info('An existing weather coordinator already exists for this location. Using that one instead') else: weather_coordinator = WeatherUpdateCoordinator(api_key, latitude, longitude, timedelta(seconds=pw_scan_Int), hass) hass.data[DOMAIN][unique_location] = weather_coordinator