serilog.json 982 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "Serilog": {
    "Using": [ "Serilog.Sinks.Console" ],
    "MinimumLevel": {
      "Default": "Debug",
      "Override": {
        "Microsoft": "Information",
        "System": "Error"
      }
    },
    "WriteTo": [
      {
        "Args": {
          "outputTemplate": "[{Timestamp:o}][{Level:u4}][{ThreadId}][{SourceContext}] {Message}{NewLine}{Exception}"
        },
        "Name": "Console"
      },
      {
        "Args": {
          "buffered": true,
          "flushToDiskInterval": 15,
          "outputTemplate": "[{Timestamp:o}][{Level:u4}][{ThreadId}][{SourceContext}] {Message}{NewLine}{Exception}",
          "pathFormat": "Logs//log-{Date}.txt",
          "retainedFileCountLimit": 3,
          "textFormatter": "Serilog.Formatting.Json.JsonFormatter, Serilog"
        },
        "Name": "RollingFile"
      }
    ],
    "Enrich": [ "FromLogContext", "WithMachineName", "WithThreadId" ],
    "Properties": {
      "Product": "Admin",
      "Env": ""
    }
  }
}