add proper logger, saves to file as well

This commit is contained in:
Master
2023-10-14 19:39:26 +02:00
parent a2e27effff
commit 239c4fca32
17 changed files with 402 additions and 140 deletions

View File

@@ -0,0 +1,13 @@
namespace AscNet.Logging
{
public enum LogLevel : byte
{
OFF = 0,
FATAL = 8,
ERROR = 16,
WARN = 32,
INFO = 64,
DEBUG = 128,
ALL = 255
}
}