LogService.cs 299 B

12345678910111213
  1. namespace AlarmInfoServerSim.Services;
  2. public class LogService : ILogService
  3. {
  4. public event EventHandler<string>? LogReceived;
  5. public void Log(string content)
  6. {
  7. string log = $"[{DateTime.Now.ToString()}] Content: {content} ";
  8. LogReceived?.Invoke(null, log);
  9. }
  10. }