ILoggingProvider.cs 237 B

1234567891011
  1. using System;
  2. namespace Quadarax.Foundation.Common.Log
  3. {
  4. public interface ILoggingProvider
  5. {
  6. bool Enabled { get; set; }
  7. void Log(SeverityEnum severity, int? code, string message, Exception e = null);
  8. }
  9. }