mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
Add logging system
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user