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
+3 -15
View File
@@ -1,7 +1,7 @@
global using Sys = Cosmos.Kernel.System;
using Cosmos.Kernel.Core;
using RemSox.Logging;
using RemSox.Processes;
using RemSox.Processing;
using RemSox.Processing.IPC;
@@ -30,7 +30,8 @@ public class Kernel : Sys.Kernel
new ListProcessesCommand(),
new StopProcessCommand(),
new StartGuiCommand(),
new StopGuiCommand()
new StopGuiCommand(),
new ViewProcessLogs()
]);
Sys.Mouse.MouseManager.Initialize();
@@ -62,19 +63,6 @@ public class Kernel : Sys.Kernel
}
}
[AttributeUsage(AttributeTargets.Class)]
public class TestAttribute : Attribute
{
public string Name { get; set; } = "default";
}
[Test(Name = "HelloCosmos")]
public class TestClass
{
}
public class TestProcess() : Process("Test Process")
{
internal override void Run(string[] args)