ILogHandler.cs 187 B

123456789
  1. using System;
  2. namespace Quadarax.Foundation.Core.Logging
  3. {
  4. public interface ILogHandler
  5. {
  6. void Log(LogSeverityEnum type, string message, Exception? e = null);
  7. }
  8. }