From 0c4897d7c11b82edc76e7bd969e15fcd559a02c5 Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Mon, 13 May 2013 22:32:02 -1000 Subject: [PATCH] Changed the trace logger for PublishedContentRequestEngine to be correct. --- src/Umbraco.Web/Routing/PublishedContentRequestEngine.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Routing/PublishedContentRequestEngine.cs b/src/Umbraco.Web/Routing/PublishedContentRequestEngine.cs index daeaa85cb8..6fc59eb0ed 100644 --- a/src/Umbraco.Web/Routing/PublishedContentRequestEngine.cs +++ b/src/Umbraco.Web/Routing/PublishedContentRequestEngine.cs @@ -325,7 +325,7 @@ namespace Umbraco.Web.Routing // the first successful finder, if any, will set this.PublishedContent, and may also set this.Template // some finders may implement caching - using (DisposableTimer.DebugDuration( + using (DisposableTimer.DebugDuration( () => string.Format("{0}Begin finders", tracePrefix), () => string.Format("{0}End finders, {1}", tracePrefix, (_pcr.HasPublishedContent ? "a document was found" : "no document was found")))) {