This repository has been archived on 2026-08-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
T
2026-06-09 16:59:53 +08:00

20 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace kcsj.Services
{
public static class LogService
{
public static event Action<string> OnLog;
public static void AddLog(string message)
{
string time = DateTime.Now.ToString("HH:mm:ss");
OnLog?.Invoke($"[{time}] {message}");
}
}
}