You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
578 B
32 lines
578 B
{
|
|
"Serilog": {
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"Microsoft.Hosting.Lifetime": "Information"
|
|
}
|
|
},
|
|
"Enrich": [ "FromLogContext" ],
|
|
"WriteTo": [
|
|
{
|
|
"Name": "File",
|
|
"Args": {
|
|
"path": "./Logs/Log-.txt",
|
|
"rollingInterval": "Day"
|
|
}
|
|
|
|
},
|
|
{
|
|
"Name": "Console",
|
|
"Args": {}
|
|
},
|
|
{
|
|
"Name": "Debug",
|
|
"Args": {}
|
|
}
|
|
]
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Urls": "http://localhost:9003"
|
|
}
|