22 lines
522 B
JSON
22 lines
522 B
JSON
{
|
|
"Serilog": {
|
|
"Using": [ "Serilog.Sinks.File" ],
|
|
"MinimumLevel": "Information",
|
|
"WriteTo": [
|
|
{
|
|
"Name": "File",
|
|
"Args": {
|
|
"path": "Logs/log_.log",
|
|
"rollingInterval": "Day",
|
|
"outputTemplate": "[{Timestamp:HH:mm:ss.fff}]{Level:u4}: {Message:lj}{NewLine}{Exception}"
|
|
}
|
|
},
|
|
{ "Name": "Console" }
|
|
],
|
|
"Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
|
|
"Properties": {
|
|
"Application": "Locomotives"
|
|
}
|
|
}
|
|
}
|