Adds logging for parking zone code
All checks were successful
Build, Push and Run Container / build (push) Successful in 24s
All checks were successful
Build, Push and Run Container / build (push) Successful in 24s
Adds logging of the parking zone code when parking starts in a determined zone. This provides more detailed information for debugging and monitoring purposes.
This commit is contained in:
@@ -108,6 +108,8 @@ public class MessageProcessor
|
|||||||
this.logger.LogInformation("Parking started in non-parking zone for {VIN}", vin);
|
this.logger.LogInformation("Parking started in non-parking zone for {VIN}", vin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
// Push parking started in zone
|
// Push parking started in zone
|
||||||
this.parkingState.SetParkingStarted();
|
this.parkingState.SetParkingStarted();
|
||||||
if (sendNotification)
|
if (sendNotification)
|
||||||
@@ -119,7 +121,8 @@ public class MessageProcessor
|
|||||||
Priority = Priority.Normal,
|
Priority = Priority.Normal,
|
||||||
Timestamp = DateTimeOffset.Now.ToLocalTime().ToString(),
|
Timestamp = DateTimeOffset.Now.ToLocalTime().ToString(),
|
||||||
});
|
});
|
||||||
this.logger.LogInformation("Parking started for {VIN}", vin);
|
this.logger.LogInformation("Parking started for {VIN} at {ZoneCode}", vin, zoneLookupResult.Value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
this.logger.LogError(zoneLookupResult.Exception, "Can't start parking: error while determining parking zone");
|
this.logger.LogError(zoneLookupResult.Exception, "Can't start parking: error while determining parking zone");
|
||||||
|
|||||||
Reference in New Issue
Block a user