From 3f429c60839e0ac6a29e33a72d21ef85513b6c9b Mon Sep 17 00:00:00 2001 From: "Mariana R. Santos" Date: Thu, 28 Nov 2024 11:03:13 +0100 Subject: [PATCH] Change log level to debbug --- backend/api/Services/MissionRunService.cs | 2 +- backend/api/Services/RobotService.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/api/Services/MissionRunService.cs b/backend/api/Services/MissionRunService.cs index af748d36b..a1d9b3d04 100644 --- a/backend/api/Services/MissionRunService.cs +++ b/backend/api/Services/MissionRunService.cs @@ -562,7 +562,7 @@ public async Task UpdateMissionRunProperty(string missionRunId, stri { if (property.Name == propertyName) { - logger.LogInformation("Setting {missionRunName} field {propertyName} from {oldValue} to {NewValue}", missionRun.Name, propertyName, property.GetValue(missionRun), value); + logger.LogDebug("Setting {missionRunName} field {propertyName} from {oldValue} to {NewValue}", missionRun.Name, propertyName, property.GetValue(missionRun), value); property.SetValue(missionRun, value); } } diff --git a/backend/api/Services/RobotService.cs b/backend/api/Services/RobotService.cs index c1e089a69..d7f7d2219 100644 --- a/backend/api/Services/RobotService.cs +++ b/backend/api/Services/RobotService.cs @@ -331,7 +331,7 @@ private async Task UpdateRobotProperty(string robotId, string propertyNam { if (property.Name == propertyName) { - logger.LogInformation("Setting {robotName} field {propertyName} from {oldValue} to {NewValue}", robot.Name, propertyName, property.GetValue(robot), value); + logger.LogDebug("Setting {robotName} field {propertyName} from {oldValue} to {NewValue}", robot.Name, propertyName, property.GetValue(robot), value); property.SetValue(robot, value); } }