28 lines
532 B
JSON
28 lines
532 B
JSON
{
|
|
"App": {
|
|
"Prefix": "Test"
|
|
},
|
|
"Serilog": {
|
|
"Using": ["Serilog.Sinks.Seq"],
|
|
"MinimumLevel": {
|
|
"Default": "Debug",
|
|
"Override": {
|
|
"Microsoft": "Warning",
|
|
"System": "Warning"
|
|
}
|
|
},
|
|
"WriteTo": [
|
|
{
|
|
"Name": "Seq",
|
|
"Args": {
|
|
"serverUrl": "http://localhost:5341",
|
|
"restrictedToMinimumLevel": "Information"
|
|
}
|
|
}
|
|
],
|
|
"Enrich": ["FromLogContext"],
|
|
"Properties": {
|
|
"ApplicationName": "Lambda.Example"
|
|
}
|
|
}
|
|
}
|