A json file is used for logging configuration (appsettings.json).
File appsettings.json locates at:
Parameter variables - sets the value of a configuration variable.
"variables": { "minLevel": "Trace", "dbMinLevel": "Info" } |
The value of a variable can be inserted into an attribute value via the |
Each log entry has a level. And each logger is configured to include or ignore certain levels. A common configuration is to specify the minimum level where that level and higher levels are included. For example, if the minimum level is Info, then Info, Warn, Error and Fatal are logged, but Debug and Trace are ignored.
The log levels ordered by severity:
LogLevel | Ordinal | Severity |
Trace | 0 | Most verbose level. Used for development and seldom enabled in production. |
Debug | 1 | Debugging the application behavior from internal events of interest. |
Info | 2 | Information that highlights progress or application lifetime events. |
Warn | 3 | Warnings about validation issues or temporary failures that can be recovered. |
Error | 4 | Errors where functionality has failed or Exception have been caught. |
Fatal | 5 | Most critical level. Application is about to abort. |
The common configuration is to specify a minimum level in which this level and higher levels are included. For example, if the minimum level is Info, then Info, Warn, Error and Fatal are registered, but Debug and Trace are ignored.
Each type of log has its own name, which is not recommended to edit.
"Rules": { "03_Hangfire": { "logger": "Hangfire.*", "minLevel": "Info", "writeTo": "hangfireFile", "final": true }, "20_Errors": { "logger": "*", "minLevel": "Error", "writeTo": "errorsFile" }, "40_Commands": { "logger": "Idp.Application.*Command", "minLevel": "${minLevel}", "writeTo": "commandsFile", "Enabled": false }, } |
For each type of log, you can specify the following tags:
Each component that records logs has a file NLog.json, which specifies where and how logs will be recorded.
For Windows NLog.json file locates in the same path as the appsettings file.json and is configured for each component separately.
Parameter variables - sets the value of a configuration variable. The number of variables is unlimited. (optional parameter).
Each type of log has its own name, which is not recommended to edit.
type — The type of the saved log. Editing is not recommended.
The directory for recording and storing logs is specified in one of two formats "C:\Logs\logs.log" or "C:\\LogsArch\\logs.{#####}.log". {#####} specified only in archiveFileName parameter. This is necessary for numbering filled logs. |
If log rotation is enabled, then the directory of the recorded log and the directory of the filled logs must be different. |
Example of configuration for errors log:
"targets":{ "errorsFile": { "type": "File", "layout": "${loggerLayout}", "fileName": "C:\Logs\errors.log", "archiveFileName": "C:\\LogsArch\\errors.{#####}.log", "archiveAboveSize": 1000000, "archiveNumbering": "Sequence", "maxArchiveFiles": 2 } } |
Log rotation is not enabled by default.