Skip to content

Commit

Permalink
Change log level to debbug
Browse files Browse the repository at this point in the history
  • Loading branch information
mrica-equinor committed Nov 28, 2024
1 parent ac36b4d commit 3f429c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/api/Services/MissionRunService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ public async Task<MissionRun> 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);
}
}
Expand Down
2 changes: 1 addition & 1 deletion backend/api/Services/RobotService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private async Task<Robot> 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);
}
}
Expand Down

0 comments on commit 3f429c6

Please sign in to comment.