diff --git a/custom_components/gismeteo/api.py b/custom_components/gismeteo/api.py index a1b1768..b7932e3 100644 --- a/custom_components/gismeteo/api.py +++ b/custom_components/gismeteo/api.py @@ -142,12 +142,12 @@ def __init__( # noqa: PLR0913 self._attributes = {} if location_key is not None: - _LOGGER.debug("Place location ID: %s", location_key) + _LOGGER.debug("Place location ID used") self._attributes = { ATTR_ID: location_key, } elif self._valid_coordinates(latitude, longitude): - _LOGGER.debug("Place coordinates: %s, %s", latitude, longitude) + _LOGGER.debug("Place coordinates used") self._attributes = { ATTR_LATITUDE: latitude, ATTR_LONGITUDE: longitude,