Miniprofiler is only enabled in production.

This commit is contained in:
kay.one 2011-12-07 20:02:58 -08:00
parent 6f9aaa1145
commit becd8e2dac
1 changed files with 8 additions and 5 deletions

View File

@ -4,6 +4,8 @@ using System.Linq;
using MvcMiniProfiler;
using MvcMiniProfiler.MVCHelpers;
using Microsoft.Web.Infrastructure.DynamicModuleHelper;
using NzbDrone.Common;
//using System.Data;
//using System.Data.Entity;
//using System.Data.Entity.Infrastructure;
@ -66,7 +68,11 @@ namespace NzbDrone.Web.App_Start
//TODO: By default only local requests are profiled, optionally you can set it up
// so authenticated users are always profiled
//if (request.IsLocal) { MiniProfiler.Start(); }
MiniProfiler.Start();
if (!EnviromentProvider.IsProduction)
{
MiniProfiler.Start();
}
};
@ -81,10 +87,7 @@ namespace NzbDrone.Web.App_Start
};
*/
context.EndRequest += (sender, e) =>
{
MiniProfiler.Stop();
};
context.EndRequest += (sender, e) => MiniProfiler.Stop();
}
public void Dispose() { }