First commit

This commit is contained in:
P-A
2026-03-28 21:49:58 +01:00
parent b4eb275d62
commit b903b27890
196 changed files with 5623 additions and 2 deletions

14
Logger/LogLevel.cs Normal file
View File

@@ -0,0 +1,14 @@
namespace Logger;
/// <summary>
/// Enumeration for different log levels
/// </summary>
public enum LogLevel
{
Trace = 0,
Debug = 1,
Info = 2,
Warning = 3,
Error = 4,
Fatal = 5
}