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.

27 lines
398 B

namespace CoreAgent.Domain.Models.Protocol;
/// <summary>
/// 日志级别枚举
/// </summary>
public enum LogLevel
{
/// <summary>
/// 调试级别
/// </summary>
Debug,
/// <summary>
/// 信息级别
/// </summary>
Info,
/// <summary>
/// 警告级别
/// </summary>
Warn,
/// <summary>
/// 错误级别
/// </summary>
Error
}