From d1be38be64b7e9150a9f993596bebb06f2db145a Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 28 Jan 2016 18:37:56 +0100 Subject: [PATCH] reverts profiler changes, we'll inlcude in 7.4 --- src/Umbraco.Web/WebBootManager.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Umbraco.Web/WebBootManager.cs b/src/Umbraco.Web/WebBootManager.cs index 3ca8903c98..67e0e65703 100644 --- a/src/Umbraco.Web/WebBootManager.cs +++ b/src/Umbraco.Web/WebBootManager.cs @@ -182,11 +182,8 @@ namespace Umbraco.Web protected override void InitializeProfilerResolver() { base.InitializeProfilerResolver(); - //Set the profiler to be the web profiler - var profiler = new WebProfiler(); - ProfilerResolver.Current.SetProfiler(profiler); - profiler.Start(); + ProfilerResolver.Current.SetProfiler(new WebProfiler()); } ///