Downgrade Renault warning (#67601)

Co-authored-by: epenet <epenet@users.noreply.github.com>
This commit is contained in:
epenet 2022-03-04 10:03:38 +01:00 committed by GitHub
parent cd25769667
commit 5f421252a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,