TigerMan
03/07/2024, 1:57 PM_tommadden
03/07/2024, 2:41 PM_tommadden
03/07/2024, 3:03 PMMike Chambers
03/08/2024, 8:39 AMAlso, ensure your template calls @Html.RenderProfiler() as one of the last things.
? might help?Mike Chambers
03/08/2024, 8:58 AMcsharp
public bool IsDebug => // NOTE: the request can be null during app startup!
_hostingEnvironment.IsDebugMode
&& (string.IsNullOrEmpty(_httpContextAccessor.HttpContext?.GetRequestValue("umbdebugshowtrace")) == false
|| string.IsNullOrEmpty(_httpContextAccessor.HttpContext?.GetRequestValue("umbdebug")) == false
|| string.IsNullOrEmpty(_cookieManager.GetCookieValue("UMB-DEBUG")) == false);
Wiggy
08/19/2024, 3:04 PMJason
08/20/2024, 10:07 PM@Html.RenderProfiler()
.
The BackOffice is all JS and .NET APIs, if you need to do profiling in the Backoffice then you'll want to to profile your APIs and JavaScript directly.