Created
October 12, 2018 18:36
-
-
Save juanluelguerre/c51595a3f26a71a0ea84b345e9b88977 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"Serilog": { | |
"MinimumLevel": "Information", | |
"WriteTo": [ | |
{ | |
"Name": "Async", | |
"Args": { | |
"configure": [ | |
{ | |
"Name": "Console", | |
"Args": { | |
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact", | |
"outputTemplate": "===> {Timestamp:HH:mm:ss.fff} [{Application}] [{Level}] {Message}{NewLine}{Exception}" | |
} | |
}, | |
{ | |
"Name": "RollingFile", | |
"Args": { | |
"pathFormat": "trace-{Date}.log", | |
"formatter": "Serilog.Formatting.Compact.CompactJsonFormatter, Serilog.Formatting.Compact", | |
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff} [{Application}] [{Level}] {Message}{NewLine}{Exception}", | |
"fileSizeLimitBytes": 500000, | |
"retainedFileCountLimit": 7 /* One file per day on a week */ | |
} | |
} | |
] | |
} | |
} | |
], | |
"Properties": { | |
"Application": "Taskin", | |
"Environment": "Development" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment