mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
12 lines
144 B
C#
12 lines
144 B
C#
|
|
namespace CMLeonOS.Logger
|
||
|
|
{
|
||
|
|
public enum LogLevel
|
||
|
|
{
|
||
|
|
Debug,
|
||
|
|
Info,
|
||
|
|
Warning,
|
||
|
|
Error,
|
||
|
|
Success
|
||
|
|
}
|
||
|
|
}
|