27 lines
743 B
JSON
27 lines
743 B
JSON
{
|
|
"Serilog": {
|
|
"Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.Seq" ],
|
|
"MinimumLevel": {
|
|
"Default": "Information",
|
|
"Override": {
|
|
"Microsoft.AspNetCore": "Warning",
|
|
"Microsoft.EntityFrameworkCore.Database.Command": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{ "Name": "Console", "Args": { "formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact" } },
|
|
{ "Name": "Seq", "Args": { "serverUrl": "http://localhost:5341" } }
|
|
],
|
|
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
|
|
"Properties": {
|
|
"Application": "VigilCare.WardGateway"
|
|
}
|
|
},
|
|
"Gateway": {
|
|
"AutoMigrate": true
|
|
},
|
|
"RabbitMq": {
|
|
"UseSsl": true
|
|
}
|
|
}
|