日志系统

This commit is contained in:
2026-02-04 23:49:08 +08:00
parent 147e2d6881
commit 1bfa4cf1f3
4 changed files with 206 additions and 18 deletions

11
Logger/LogLevel.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace CMLeonOS.Logger
{
public enum LogLevel
{
Debug,
Info,
Warning,
Error,
Success
}
}