Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs =================================================================== diff -u -r3ed8e00da47ef2780e79688a9902e12b674e4cc0 -r92210258706d0f57e05552037b676bd941a6fe19 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 3ed8e00da47ef2780e79688a9902e12b674e4cc0) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Service/WaveImpactAsphaltCoverWaveConditionsCalculationService.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationService.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19) @@ -56,7 +56,6 @@ return ValidateWaveConditionsInput( calculation.InputParameters, - calculation.Name, hydraulicBoundaryDatabaseFilePath, Resources.WaveConditionsCalculationService_ValidateInput_default_DesignWaterLevel_name); } @@ -104,10 +103,8 @@ throw new ArgumentNullException(nameof(generalWaveConditionsInput)); } - string calculationName = calculation.Name; + CalculationServiceHelper.LogCalculationBegin(); - CalculationServiceHelper.LogCalculationBegin(calculationName); - RoundedDouble a = generalWaveConditionsInput.A; RoundedDouble b = generalWaveConditionsInput.B; RoundedDouble c = generalWaveConditionsInput.C; @@ -117,7 +114,7 @@ try { - IEnumerable outputs = CalculateWaveConditions(calculationName, calculation.InputParameters, a, b, c, norm, hlcdFilePath); + IEnumerable outputs = CalculateWaveConditions(calculation.InputParameters, a, b, c, norm, hlcdFilePath); if (!Canceled) { @@ -126,7 +123,7 @@ } finally { - CalculationServiceHelper.LogCalculationEnd(calculationName); + CalculationServiceHelper.LogCalculationEnd(); } } }