Parcourir la source

优化日志

datasub12
H Vs il y a 6 mois
Parent
révision
4ce91840f9
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressConfigManualCalibrationController.cs
  2. +1
    -1
      HealthMonitor.WebApi/Worker.cs

+ 1
- 1
HealthMonitor.WebApi/Controllers/HealthMonitor/HmBloodPressConfigManualCalibrationController.cs Voir le fichier

@@ -222,7 +222,7 @@ namespace HealthMonitor.WebApi.Controllers.HealthMonitor
// 除最大值和最小值后的平均值与标定值差值少于4后(当天计算出该结果则也不产生增量调整),就不再进行增量值调整了。
if (systolicAvg-systolicRefValue < 4)
{
_logger.LogInformation($"除最大值和最小值后的平均值与标定值差值少于4后,不再进行增量值调整");
_logger.LogInformation($"{imei} 除最大值和最小值后的平均值与标定值差值少于4后,不再进行增量值调整");
return ApiResponse<object>.Fail(502, $"平均值与标定值差值少于4,不调整增量值");
}



+ 1
- 1
HealthMonitor.WebApi/Worker.cs Voir le fichier

@@ -335,7 +335,7 @@ namespace HealthMonitor.WebApi
// 除最大值和最小值后的平均值与标定值差值少于4后(当天计算出该结果则也不产生增量调整),就不再进行增量值调整了。
if (systolicAvg-systolicRefValue < 4)
{
_logger.LogInformation($"除最大值和最小值后的平均值与标定值差值少于4后,不再进行增量值调整");
_logger.LogInformation($"{imeiDel}除最大值和最小值后的平均值与标定值差值少于4后,不再进行增量值调整");
break;
}



Chargement…
Annuler
Enregistrer