diff --git a/src/UI/WPF/ViewModels/AnimationControlViewModel.cs b/src/UI/WPF/ViewModels/AnimationControlViewModel.cs index 7048ef8..d0c319b 100644 --- a/src/UI/WPF/ViewModels/AnimationControlViewModel.cs +++ b/src/UI/WPF/ViewModels/AnimationControlViewModel.cs @@ -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}"); } diff --git a/src/UI/WPF/Views/EditRotationWindow.xaml.cs b/src/UI/WPF/Views/EditRotationWindow.xaml.cs index 86ad684..f180a60 100644 --- a/src/UI/WPF/Views/EditRotationWindow.xaml.cs +++ b/src/UI/WPF/Views/EditRotationWindow.xaml.cs @@ -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}"); }