| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "$schema": "https://gitee.com/dotnetchina/Furion/raw/net6/schemas/v3/furion-schema.json",
- "Urls": "https://*:5005",
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- },
- "File": {
- "FileName": "logs/info.log",
- "Append": true,
- "MinimumLevel": "Information",
- "FileSizeLimitBytes": 5120,
- "MaxRollingFiles": 100
- },
- "Database": {
- "MinimumLevel": "Information"
- }
- },
- "AllowedHosts": "*"
- //"Serilog": {
- // "MinimumLevel": {
- // "Default": "Information",
- // "Override": {
- // "System": "Warning",
- // "Microsoft": "Warning",
- // "Microsoft.Hosting.Lifetime": "Information",
- // "Microsoft.EntityFrameworkCore": "Information"
- // }
- // },
- // "WriteTo": [
- // {
- // "Name": "Console",
- // "Args": {
- // "outputTemplate": "【时间】{Timestamp:yyyy-MM-dd HH:mm:ss,fff}{NewLine}【等级】{Level:u3}{NewLine}【消息】{Message:lj}{NewLine}{NewLine}"
- // }
- // },
- // {
- // "Name": "File",
- // "Args": {
- // "path": "logs/.log",
- // "rollingInterval": "Day",
- // "outputTemplate": "【时间】{Timestamp:yyyy-MM-dd HH:mm:ss,fff}{NewLine}【等级】{Level:u3}{NewLine}【消息】{Message:lj}{NewLine}{NewLine}"
- // }
- // }
- // ]
- //},
- }
|