Files
EmailBill/WebApi/appsettings.Development.json

24 lines
412 B
JSON
Raw Normal View History

2025-12-25 11:20:56 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Microsoft": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": ["FromLogContext"]
}
}