mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 17:16:24 +02:00
20 lines
403 B
C#
20 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
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);
|
|
}
|
|
} |