Code cleanup

This commit is contained in:
Stone_Red
2026-06-10 00:29:28 +02:00
parent 91e8cbb00a
commit 31e54c1637
11 changed files with 184 additions and 186 deletions
+7 -13
View File
@@ -1,20 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace RemSox.Logging;
namespace RemSox.Logging
public interface ILogger
{
public interface ILogger
{
void Log(string message, LogSeverity severity);
void Log(string message, LogSeverity severity);
void LogInfo(string message);
void LogInfo(string message);
void LogError(string message);
void LogError(string message);
void LogWarning(string message);
void LogWarning(string message);
IEnumerable<LogEntry> GetLogs(int? count = null);
}
IEnumerable<LogEntry> GetLogs(int? count = null);
}