FastGithub/FastGithub.UI/LogLevel.cs
2021-11-03 22:36:13 +08:00

16 lines
270 B
C#

namespace FastGithub.UI
{
/// <summary>
/// 日志等级
/// </summary>
public enum LogLevel
{
Verbose,
Debug,
Information,
Warning,
Error,
Fatal
}
}