From 3e183a057e84bbe89b28db06b9081db2cb52d1dc Mon Sep 17 00:00:00 2001 From: Stephan Date: Wed, 29 Aug 2018 11:37:36 +0200 Subject: [PATCH] Fix for Serilog PR --- src/Umbraco.Web/Install/Controllers/InstallApiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Install/Controllers/InstallApiController.cs b/src/Umbraco.Web/Install/Controllers/InstallApiController.cs index 6e420cd498..c7ca5e1c82 100644 --- a/src/Umbraco.Web/Install/Controllers/InstallApiController.cs +++ b/src/Umbraco.Web/Install/Controllers/InstallApiController.cs @@ -225,7 +225,7 @@ namespace Umbraco.Web.Install.Controllers // executes the step internal InstallSetupResult ExecuteStep(InstallSetupStep step, JToken instruction) { - using (_proflog.TraceDuration("Executing installation step: '{Step}' Step completed", step.Name)) + using (_proflog.TraceDuration("Executing installation step: '{step.Name}'.", "Step completed")) { var model = instruction?.ToObject(step.StepType); var genericStepType = typeof(InstallSetupStep<>);