diff --git a/backend/api/Services/RobotService.cs b/backend/api/Services/RobotService.cs index b3264e5f..2c87d160 100644 --- a/backend/api/Services/RobotService.cs +++ b/backend/api/Services/RobotService.cs @@ -184,7 +184,12 @@ public async Task UpdateRobotBatteryState(string robotId, BatteryState? batteryS public async Task UpdateRobotPressureLevel(string robotId, float? pressureLevel) { - await UpdateRobotProperty(robotId, "PressureLevel", pressureLevel); + await UpdateRobotProperty( + robotId, + "PressureLevel", + pressureLevel, + isLogLevelDebug: true + ); } private void ThrowIfRobotIsNull(Robot? robot, string robotId)