25 lines
614 B
JSON
25 lines
614 B
JSON
{
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "File",
|
|
"Args": {
|
|
"path": "logs/api_log-.txt",
|
|
"rollingInterval": "Day",
|
|
"fileSizeLimitBytes": 10485760,
|
|
"rollOnFileSizeLimit": true,
|
|
"retainedFileCountLimit": 30,
|
|
"shared": true,
|
|
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {SourceContext}: {Message}{NewLine}{Exception}"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
} |