using System; namespace BestHTTP.Logger { /// /// Available logging levels. /// public enum Loglevels : int { /// /// All message will be logged. /// All, /// /// Only Informations and above will be logged. /// Information, /// /// Only Warnings and above will be logged. /// Warning, /// /// Only Errors and above will be logged. /// Error, /// /// Only Exceptions will be logged. /// Exception, /// /// No logging will occur. /// None } public interface ILogOutput : IDisposable { void Write(Loglevels level, string logEntry); } public interface ILogger { /// /// The minimum severity to log /// Loglevels Level { get; set; } ILogOutput Output { get; set; } void Verbose(string division, string msg, LoggingContext context1 = null, LoggingContext context2 = null, LoggingContext context3 = null); void Information(string division, string msg, LoggingContext context1 = null, LoggingContext context2 = null, LoggingContext context3 = null); void Warning(string division, string msg, LoggingContext context1 = null, LoggingContext context2 = null, LoggingContext context3 = null); void Error(string division, string msg, LoggingContext context1 = null, LoggingContext context2 = null, LoggingContext context3 = null); void Exception(string division, string msg, Exception ex, LoggingContext context1 = null, LoggingContext context2 = null, LoggingContext context3 = null); } }