Add logging functionality with ILogger interface and implementations

This commit is contained in:
2025-10-29 01:50:42 +01:00
parent 5d86013239
commit bf15fad9ce
8 changed files with 151 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
namespace GameCore.Logging;
public enum LogLevel
{
Debug,
Info,
Warn,
Error
}