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.
26 lines
635 B
26 lines
635 B
|
1 month ago
|
{
|
||
|
|
"Serilog": {
|
||
|
|
"Using": [ "Serilog.Sinks.File", "Serilog.Sinks.Console" ],
|
||
|
|
"MinimumLevel": {
|
||
|
|
"Default": "Information",
|
||
|
|
"Override": {
|
||
|
|
"Microsoft": "Warning",
|
||
|
|
"Microsoft.Hosting.Lifetime": "Information",
|
||
|
|
"AuroraDesk": "Debug"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"WriteTo": [
|
||
|
|
{
|
||
|
|
"Name": "Console",
|
||
|
|
"Args": {
|
||
|
|
"outputTemplate": "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message:lj}{NewLine}{Exception}"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"Enrich": [ "FromLogContext", "WithThreadId", "WithMachineName" ],
|
||
|
|
"Properties": {
|
||
|
|
"Application": "AuroraDesk"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|