ln.logging/ln.logging/ILoggingBackend.cs

13 lines
287 B
C#

using System;
using System.Security.Cryptography.X509Certificates;
namespace ln.logging
{
public interface ILoggingBackend
{
LogLevel MinLogLevel { get; set; }
LogLevel MaxLogLevel { get; set; }
void Message(LogLevel logLevel,String[] lines);
}
}