// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
using GFramework.Core.Abstractions.Logging;
namespace GFramework.Core.Logging;
///
/// 日志配置类
///
public sealed class LoggingConfiguration
{
///
/// 全局最小日志级别
///
public LogLevel MinLevel { get; set; } = LogLevel.Info;
///
/// Appender 配置列表
///
#pragma warning disable MA0016 // Preserve the established concrete configuration API surface.
public List Appenders { get; set; } = new();
#pragma warning restore MA0016
///
/// 特定 Logger 的日志级别配置
///
#pragma warning disable MA0016 // Preserve the established concrete configuration API surface.
public Dictionary LoggerLevels { get; set; } =
new Dictionary(StringComparer.Ordinal);
#pragma warning restore MA0016
}