mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
18 lines
551 B
C#
18 lines
551 B
C#
// Copyright (c) 2025-2026 GeWuYou
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
using GFramework.Core.Abstractions.Logging;
|
|
|
|
namespace GFramework.Core.Abstractions.Properties;
|
|
|
|
/// <summary>
|
|
/// 日志配置选项类,用于配置日志系统的相关参数
|
|
/// </summary>
|
|
public sealed class LoggerProperties
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置日志工厂提供程序
|
|
/// 可为空,用于提供自定义的日志工厂实现
|
|
/// </summary>
|
|
public ILoggerFactoryProvider LoggerFactoryProvider { get; set; } = null!;
|
|
} |