mirror of
https://github.com/home-assistant/core.git
synced 2025-08-03 12:45:28 +02:00
Downgrade Renault warning (#67601)
Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
@@ -104,7 +104,7 @@ class RenaultVehicleProxy:
|
|||||||
coordinator = self.coordinators[key]
|
coordinator = self.coordinators[key]
|
||||||
if coordinator.not_supported:
|
if coordinator.not_supported:
|
||||||
# Remove endpoint as it is not supported for this vehicle.
|
# Remove endpoint as it is not supported for this vehicle.
|
||||||
LOGGER.warning(
|
LOGGER.info(
|
||||||
"Ignoring endpoint %s as it is not supported for this vehicle: %s",
|
"Ignoring endpoint %s as it is not supported for this vehicle: %s",
|
||||||
coordinator.name,
|
coordinator.name,
|
||||||
coordinator.last_exception,
|
coordinator.last_exception,
|
||||||
@@ -112,7 +112,7 @@ class RenaultVehicleProxy:
|
|||||||
del self.coordinators[key]
|
del self.coordinators[key]
|
||||||
elif coordinator.access_denied:
|
elif coordinator.access_denied:
|
||||||
# Remove endpoint as it is denied for this vehicle.
|
# Remove endpoint as it is denied for this vehicle.
|
||||||
LOGGER.warning(
|
LOGGER.info(
|
||||||
"Ignoring endpoint %s as it is denied for this vehicle: %s",
|
"Ignoring endpoint %s as it is denied for this vehicle: %s",
|
||||||
coordinator.name,
|
coordinator.name,
|
||||||
coordinator.last_exception,
|
coordinator.last_exception,
|
||||||
|
Reference in New Issue
Block a user