mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 00:35:47 +08:00
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
|
|
using Serilog;
|
|||
|
|
using Serilog.Events;
|
|||
|
|
using Acme.BookStore.Web;
|
|||
|
|
|
|||
|
|
//创建日志,可使用{SourceContext}记录
|
|||
|
|
Log.Logger = new LoggerConfiguration()
|
|||
|
|
.MinimumLevel.Debug()
|
|||
|
|
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
|
|||
|
|
.MinimumLevel.Override("Microsoft.AspNetCore.Hosting.Diagnostics", LogEventLevel.Error)
|
|||
|
|
.MinimumLevel.Override("Quartz", LogEventLevel.Warning)
|
|||
|
|
.Enrich.FromLogContext()
|
|||
|
|
.WriteTo.Async(c => c.File("logs/all/log-.txt", rollingInterval: RollingInterval.Day, restrictedToMinimumLevel: LogEventLevel.Debug))
|
|||
|
|
.WriteTo.Async(c => c.File("logs/error/errorlog-.txt", rollingInterval: RollingInterval.Day, restrictedToMinimumLevel: LogEventLevel.Error))
|
|||
|
|
.WriteTo.Async(c => c.Console(restrictedToMinimumLevel: LogEventLevel.Information))
|
|||
|
|
.CreateLogger();
|
|||
|
|
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
Log.Information("Yi框架-Abp.vNext,启动!");
|
|||
|
|
|
|||
|
|
var builder = WebApplication.CreateBuilder(args);
|
|||
|
|
builder.WebHost.UseUrls(builder.Configuration["App:SelfUrl"]);
|
|||
|
|
builder.Host.UseAutofac();
|
|||
|
|
builder.Host.UseSerilog();
|
|||
|
|
await builder.Services.AddApplicationAsync<YiAbpWebModule>();
|
|||
|
|
var app = builder.Build();
|
|||
|
|
await app.InitializeApplicationAsync();
|
|||
|
|
await app.RunAsync();
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
Log.Fatal(ex, "Yi框架-Abp.vNext,爆炸!");
|
|||
|
|
}
|
|||
|
|
finally
|
|||
|
|
{
|
|||
|
|
Log.CloseAndFlush();
|
|||
|
|
}
|