Add logging system

This commit is contained in:
Stone_Red
2026-06-10 00:28:28 +02:00
parent 1cd322a0aa
commit 91e8cbb00a
9 changed files with 214 additions and 17 deletions
+9
View File
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace RemSox.Logging
{
public record LogEntry(string Message, LogSeverity Severity, DateTimeOffset Timestamp);
}