| 123456789101112131415161718192021222324252627 |
- {
- "$schema": "https://gitee.com/dotnetchina/Furion/raw/net6/schemas/v3/furion-schema.json",
- "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"
- },
- "Monitor": {
- "GlobalEnabled": true, // 启用全局拦截日志
- "IncludeOfMethods": [], // 拦截特定方法,当GlobalEnabled=false有效
- "ExcludeOfMethods": [], // 排除特定方法,当GlobalEnabled=true有效
- "BahLogLevel": "Information" // Oops.Oh 和 Oops.Bah 业务日志输出级别
- }
- }
- }
|