Skip to content

Commit

Permalink
Temporary change log to information
Browse files Browse the repository at this point in the history
  • Loading branch information
oysand committed Dec 21, 2023
1 parent b3285d1 commit bbe61e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/Services/RobotService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ private async Task<Robot> UpdateRobotProperty(string robotId, string propertyNam
{
if (property.Name == propertyName)
{
logger.LogDebug("Setting {robotName} field {propertyName} from {oldValue} to {NewValue}", robot.Name, propertyName, property.GetValue(robot), value);
logger.LogInformation("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 bbe61e0

Please sign in to comment.