From 4f368b20afd344cfb16d2f294ad8aaa0b8c605c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Chirico=20Indreb=C3=B8?= Date: Mon, 3 Feb 2025 12:58:35 +0100 Subject: [PATCH] Change pressure log to debug level --- backend/api/Services/RobotService.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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)