From cb008f61e721908ca86264d94cd9b413168457a2 Mon Sep 17 00:00:00 2001 From: Alex Savin Date: Fri, 6 Jun 2025 17:37:48 -0400 Subject: [PATCH] Enabled some Debug as an Info output --- vehicle.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vehicle.go b/vehicle.go index 93b112f..5acf959 100644 --- a/vehicle.go +++ b/vehicle.go @@ -587,7 +587,7 @@ func (v *Vehicle) GetVehicleStatus() { v.selectVehicle() reqURL := MOBILE_API_VERSION + urlToGen(apiURLs["API_VEHICLE_STATUS"], v.getAPIGen()) resp := v.client.execute(reqURL, GET, map[string]string{}, "", false) - // v.client.logger.Debug("http request output", "request", "GetVehicleStatus", "body", resp) + v.client.logger.Info("http request output", "request", "GetVehicleStatus", "body", resp) if r, ok := v.client.parseResponse(resp); ok { var vs VehicleStatus @@ -639,7 +639,7 @@ func (v *Vehicle) GetVehicleCondition() { v.selectVehicle() reqURL := MOBILE_API_VERSION + urlToGen(apiURLs["API_CONDITION"], v.getAPIGen()) resp := v.client.execute(reqURL, GET, map[string]string{}, "", false) - // v.client.logger.Debug("http request output", "request", "GetVehicleCondition", "body", resp) + v.client.logger.Info("http request output", "request", "GetVehicleCondition", "body", resp) if r, ok := v.client.parseResponse(resp); ok { var sr ServiceRequest