mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
14 lines
271 B
C#
14 lines
271 B
C#
namespace RemSox.Logging;
|
|
|
|
public interface ILogger
|
|
{
|
|
void Log(string message, LogSeverity severity);
|
|
|
|
void LogInfo(string message);
|
|
|
|
void LogError(string message);
|
|
|
|
void LogWarning(string message);
|
|
|
|
IEnumerable<LogEntry> GetLogs(int? count = null);
|
|
} |