From 451b58ee507555316f2c60b8e04d2c71b316636f Mon Sep 17 00:00:00 2001 From: Stephan Date: Wed, 29 Aug 2018 11:41:04 +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 c7ca5e1c82..387360163a 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.Name}'.", "Step completed")) + using (_proflog.TraceDuration($"Executing installation step: '{step.Name}'.", "Step completed")) { var model = instruction?.ToObject(step.StepType); var genericStepType = typeof(InstallSetupStep<>);