Files
CMLeonOS/Logger/LogLevel.cs

12 lines
144 B
C#
Raw Permalink Normal View History

2026-02-04 23:49:08 +08:00
namespace CMLeonOS.Logger
{
public enum LogLevel
{
Debug,
Info,
Warning,
Error,
Success
}
}