You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi.Core/Logging/LogLevel.cs

28 lines
472 B

namespace DownKyi.Core.Logging
{
/// <summary>
/// 日志级别
/// </summary>
public enum LogLevel
{
/// <summary>
/// 信息级别
/// </summary>
Info,
/// <summary>
/// debug级别
/// </summary>
Debug,
/// <summary>
/// 错误级别
/// </summary>
Error,
/// <summary>
/// 致命级别
/// </summary>
Fatal
}
}