📣读完这篇文章里你能收获到
- LogDashboard的实际项目接入
一、概念篇
- ABP是aspnetcore3.0的开源web应用程序框架,非常适合现代web应用程序。有关ABP的更多内容可以查看官方文档
- Logdashboard可以直接在基于abp应用程序中安装使用,关于Logdashboard的更多内容可以查看ASPNETCore开源日志面板 :LogDashboard
二、.NET项目接入
本文假设你了解ABP,并不对其做详细解释
1 新建ABP项目
使用 abp cli
创建项目
abp new BootStore
使用以下代码覆盖Program
中的Serilog
配置
Log.Logger = new LoggerConfiguration()
#if DEBUG
.MinimumLevel.Debug()
#else
.MinimumLevel.Information()
#endif
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.log", outputTemplate: "{Timestamp:HH:mm} || {Level} || {SourceContext:l} || {Message} || {Exception} ||end {NewLine}"))
.CreateLogger();
2 安装LogDashboard
Install-Package LogDashboard
打开 BootStoreWebModule
类
在ConfigureServices
方法末尾添加以下代码
context.Services.AddLogDashboard(opt => opt.SetRootPath(hostingEnvironment.ContentRootPath));
在OnApplicationInitialization 方法末尾添加以下代码
app.UseLogDashboard();
三、查看效果
迁移后运行项目,导航到/logdashboard