dont flood logs with charge rate notification

This commit is contained in:
Alex Janka 2024-01-23 14:10:36 +11:00
parent 92621d394a
commit 701f7e7ea2

View file

@ -393,7 +393,7 @@ impl TeslaInterface {
.set_charging_amps(&self.vehicle.vin, &SetChargingAmps { charging_amps })
.await
{
Ok(_) => log::warn!("Successfully set charge rate to {charging_amps}"),
Ok(_) => {}
Err(e) => log::error!("Error setting charge rate: {e:?}"),
},
}