From 1e6780b8b7ba8468beef5c306f26bb2583ae4bd5 Mon Sep 17 00:00:00 2001 From: Michael Geers Date: Thu, 28 Mar 2024 08:53:24 +0100 Subject: [PATCH] Battery control: graceful smart cost error handling (#13172) --- core/site_battery.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/site_battery.go b/core/site_battery.go index ecc51d2c69..f67af803e7 100644 --- a/core/site_battery.go +++ b/core/site_battery.go @@ -74,8 +74,7 @@ func (site *Site) updateBatteryMode() { for _, lp := range site.Loadpoints() { smartCostActive, err := site.smartCostActive(lp) if err != nil { - site.log.ERROR.Println("smart cost:", err) - continue + site.log.WARN.Println("smart cost:", err) } if lp.GetStatus() == api.StatusC && (smartCostActive || lp.IsFastChargingActive()) {