diff --git a/backend/api/Services/RobotService.cs b/backend/api/Services/RobotService.cs index 26b51d54b..054cb2dbf 100644 --- a/backend/api/Services/RobotService.cs +++ b/backend/api/Services/RobotService.cs @@ -261,6 +261,7 @@ public async Task UpdateCurrentMissionId(string robotId, string? currentM public async Task UpdateCurrentArea(string robotId, string? areaId) { + logger.LogInformation("Updating current area for robot with Id {robotId} to area with Id {areaId}", robotId, areaId); if (areaId is null) { return await UpdateRobotProperty(robotId, "CurrentArea", null); } var area = await areaService.ReadById(areaId); if (area is null)