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
+4 -1
View File
@@ -1,10 +1,13 @@
using RemSox.Logging;
using RemSox.Processing.IPC;
namespace RemSox.Processing;
public abstract class Process(string name)
{
public int Id { get; init; }
public int Id { get; init; } // Will be set by ProcessManager when the process is spawned
public ILogger Logger { protected get; init; } = null!; // Will be set by ProcessManager when the process is spawned
public string Name { get; set; } = name;