22 lines
626 B
C#
22 lines
626 B
C#
using DiscordBotCore.Others;
|
|
|
|
namespace LoggerModule;
|
|
|
|
public interface ILogger
|
|
{
|
|
public struct FormattedMessage {
|
|
public string Message;
|
|
public LogType Type;
|
|
}
|
|
|
|
string LogMessageFormat { get; set; }
|
|
|
|
void Log(string message);
|
|
void Log(string message, LogType logType);
|
|
void Log(string message, LogType logType, string format);
|
|
void Log(string message, object Sender);
|
|
void Log(string message, object Sender, LogType type);
|
|
void LogException(Exception exception, object Sender, bool logFullStack = false);
|
|
|
|
void SetOutFunction(Action<string,LogType> outFunction);
|
|
} |