自动调整Info日志改为Debug

This commit is contained in:
tian 2026-05-29 01:49:39 +08:00
parent c67dee4f11
commit 90367db214
2 changed files with 3 additions and 3 deletions

View File

@ -2284,7 +2284,7 @@ namespace NavisworksTransport.UI.WPF.ViewModels
result = ObjectPassageProjectionOptimizationResult.CreateSuccess(
result.Correction, result.Score, neededLiftInMeters);
LogManager.Info(
LogManager.Debug(
$"[自动调整] 物体底面={UnitsConverter.ConvertToMeters(objectBottomWorld):F3}m, 地面={UnitsConverter.ConvertToMeters(groundLevel):F3}m, " +
$"车高={UnitsConverter.ConvertToMeters(request.VehicleHeightModelUnits):F3}m, 计算偏移={neededLiftInMeters:F3}m");
}
@ -2299,7 +2299,7 @@ namespace NavisworksTransport.UI.WPF.ViewModels
if (result.Success)
{
LogManager.Info(
LogManager.Debug(
$"[自动调整实测] 最优角度={result.Correction}, " +
$"实测截面宽度={result.Score.WidthAcrossPath:F3}, 高度={result.Score.HeightAlongHostUp:F3}, 面积={result.Score.Area:F3}");
}

View File

@ -183,7 +183,7 @@ namespace NavisworksTransport.UI.WPF.Views
{
GroundPathLiftHeightInMeters = Math.Round(result.ComputedLiftOffsetMeters.Value, 3);
}
LogManager.Info(
LogManager.Debug(
$"[自动调整] 已写入角度: {RotationCorrection}, " +
$"截面宽度={result.Score.WidthAcrossPath:F3}, 高度={result.Score.HeightAlongHostUp:F3}, 面积={result.Score.Area:F3}");
}