Blog.Core/Blog.Core.Extensions/Middlewares/MiniProfilerMiddleware.cs
2023-04-01 23:25:56 +08:00

34 lines
882 B
C#

using Blog.Core.Common;
using Microsoft.AspNetCore.Builder;
using System;
using Serilog;
namespace Blog.Core.Extensions.Middlewares
{
/// <summary>
/// MiniProfiler性能分析
/// </summary>
public static class MiniProfilerMiddleware
{
public static void UseMiniProfilerMiddleware(this IApplicationBuilder app)
{
if (app == null) throw new ArgumentNullException(nameof(app));
try
{
if (AppSettings.app("Startup", "MiniProfiler", "Enabled").ObjToBool())
{
// 性能分析
app.UseMiniProfiler();
}
}
catch (Exception e)
{
Log.Error($"An error was reported when starting the MiniProfilerMildd.\n{e.Message}");
throw;
}
}
}
}