移植更新:桌面环境的Event Log移植功能

This commit is contained in:
2026-03-13 21:30:02 +08:00
parent 80413769f0
commit 518de24414
6 changed files with 7 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ namespace CMLeonOS
public override void Run()
{
CMLeonOS.Logger.Logger.Instance.Info($"Command_{command}", $"Executing command: {command} {args}");
CMLeonOS.Logger.Logger.Instance.Debug($"Command_{command}", $"Executing command: {command} {args}");
try
{
@@ -73,7 +73,7 @@ namespace CMLeonOS
CMLeonOS.Logger.Logger.Instance.Error($"Command_{command}", $"Command failed: {e.ToString()}");
}
CMLeonOS.Logger.Logger.Instance.Info($"Command_{command}", $"Command completed: {command}");
CMLeonOS.Logger.Logger.Instance.Debug($"Command_{command}", $"Command completed: {command}");
}
}
}