using System; namespace Quadarax.Foundation.Core.Logging { public interface ILogHandler { void Log(LogSeverityEnum type, string message, Exception e = null); } }