mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 09:10:53 +08:00
15 lines
280 B
C#
15 lines
280 B
C#
|
|
using Microsoft.Extensions.Logging;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.Common.Exceptions;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// <20><><EFBFBD><EFBFBD><see cref="LogLevel"/> <20><><EFBFBD>ԵĽӿ<C4BD>
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IHasLogLevel
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Log severity.
|
|||
|
|
/// </summary>
|
|||
|
|
LogLevel LogLevel { get; set; }
|
|||
|
|
}
|