Skip to content

Latest commit

 

History

History
22 lines (21 loc) · 414 Bytes

File metadata and controls

22 lines (21 loc) · 414 Bytes

Unofficial.Microsoft.Extensions.Logging.TextFile

How to Use:

Add to Program.cs:

builder.Logging.AddFileLogger();

Add to application.json

"Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft.AspNetCore": "Warning"
    },
    "File": {
      "FileMap": {
        "Information": "Logs\\info.txt",
        "Warning": "Logs\\warn.txt"
      }
    }
  }