Files
downkyicore/DownKyi.Core/Aria2cNet/Server/AriaConfigLogLevel.cs
2023-12-12 16:58:45 +08:00

14 lines
199 B
C#

namespace DownKyi.Core.Aria2cNet.Server;
/// <summary>
/// 日志等级
/// </summary>
public enum AriaConfigLogLevel
{
NOT_SET = 0,
DEBUG = 1,
INFO,
NOTICE,
WARN,
ERROR
}