LoggingIntoEventBus.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using PCC.Common.EventBus;
  2. namespace PCC.Common.Logging;
  3. public class LoggingIntoEventBus : ILoggerProvider
  4. {
  5. public IEventBus? EventBus { get; set; }
  6. public void Dispose()
  7. {
  8. }
  9. public ILogger CreateLogger(string categoryName)
  10. {
  11. return new LoggingIntoEventBusLogger(categoryName, this);
  12. }
  13. private class LoggingIntoEventBusLogger(string categoryName, LoggingIntoEventBus owner) : ILogger
  14. {
  15. public IDisposable? BeginScope<TState>(TState state) where TState : notnull => default;
  16. public bool IsEnabled(LogLevel logLevel) => true;
  17. public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
  18. {
  19. if (owner.EventBus == null) return;
  20. var content = Convert.ToString(state);
  21. if (exception != null) content = $"{content} {exception}";
  22. var formatted = $"[{DateTime.Now:dd HH:mm:ss}] {categoryName} {content}";
  23. owner.EventBus.Publish(new LoggingEvent(logLevel, categoryName, formatted));
  24. }
  25. }
  26. }