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.Interfaces;
public interface ILogger
{
void Debug(string message);
void Info(string message);
void Warn(string message);
void Error(string message, Exception? ex = null);
}