mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-08 15:56:29 +02:00
Code cleanup
This commit is contained in:
+7
-13
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user