Files
StopShopping/StopShopping.FileApi/appsettings.Template.json
2026-03-30 11:07:30 +08:00

27 lines
595 B
JSON

{
"AppOptions": {
"Domain": "DOMAIN"
},
"Serilog": {
"Using": ["Serilog.Sinks.File"],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"WriteTo": [
{
"Name": "File",
"Args": {
"path": "./logs/log-.txt",
"rollingInterval": "Day",
"outputTemplate": "{Timestamp:HH:mm:ss.fff} [{Level:u3}] {SourceContext} - {Message:lj}{NewLine}{Exception}"
}
}
]
},
"AllowedHosts": "*"
}