From 3fd3bf0fda957142cf81b85993d0ceb3050c8ebf Mon Sep 17 00:00:00 2001 From: Shannon Deminick Date: Sun, 12 May 2013 18:17:53 -1000 Subject: [PATCH] updated extensino method to prefix the type name better. --- src/Umbraco.Core/Profiling/ProfilerExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Profiling/ProfilerExtensions.cs b/src/Umbraco.Core/Profiling/ProfilerExtensions.cs index 0bdb38fd95..b9718271b9 100644 --- a/src/Umbraco.Core/Profiling/ProfilerExtensions.cs +++ b/src/Umbraco.Core/Profiling/ProfilerExtensions.cs @@ -13,7 +13,7 @@ namespace Umbraco.Core.Profiling /// public static IDisposable Step(this IProfiler profiler, string name) { - return profiler.Step(string.Format(typeof (T).Name + ", " + name)); + return profiler.Step(string.Format("[" + typeof (T).Name + "] " + name)); } } } \ No newline at end of file