30 lines
886 B
C#
30 lines
886 B
C#
using Print.Forum.HttpApi.Host;
|
|
using Serilog.Events;
|
|
using Serilog;
|
|
|
|
Log.Logger = new LoggerConfiguration()
|
|
#if DEBUG
|
|
.MinimumLevel.Debug()
|
|
#else
|
|
.MinimumLevel.Information()
|
|
#endif
|
|
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
|
|
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
|
|
.Enrich.FromLogContext()
|
|
.WriteTo.Async(c => c.File("logs/logs.log"))
|
|
#if DEBUG
|
|
.WriteTo.Async(c => c.Console())
|
|
#endif
|
|
.CreateLogger();
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
builder.Host.AddAppSettingsSecretsJson()
|
|
.UseAutofac()
|
|
.UseSerilog();
|
|
// Add services to the container.
|
|
await builder.AddApplicationAsync<ForumHttpApiHostModule>();
|
|
|
|
var app = builder.Build();
|
|
// Configure the HTTP request pipeline.
|
|
await app.InitializeApplicationAsync();
|
|
await app.RunAsync(); |