mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
* Fix AutoFishing crash * Fix all warnings * Remove DotNetZip. * Fix the usage of HttpClient.
31 lines
864 B
C#
31 lines
864 B
C#
namespace MinecraftClient.Logger
|
|
{
|
|
public interface ILogger
|
|
{
|
|
bool DebugEnabled { get; set; }
|
|
bool WarnEnabled { get; set; }
|
|
bool InfoEnabled { get; set; }
|
|
bool ErrorEnabled { get; set; }
|
|
bool ChatEnabled { get; set; }
|
|
|
|
void Info(string msg);
|
|
void Info(string msg, params object[] args);
|
|
void Info(object msg);
|
|
|
|
void Debug(string msg);
|
|
void Debug(string msg, params object[] args);
|
|
void Debug(object msg);
|
|
|
|
void Warn(string msg);
|
|
void Warn(string msg, params object[] args);
|
|
void Warn(object msg);
|
|
|
|
void Error(string msg);
|
|
void Error(string msg, params object[] args);
|
|
void Error(object msg);
|
|
|
|
void Chat(string msg);
|
|
void Chat(string msg, params object[] args);
|
|
void Chat(object msg);
|
|
}
|
|
}
|