mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-07 16:45:10 +00:00
17 lines
567 B
C#
17 lines
567 B
C#
namespace TEngine
|
|
{
|
|
public interface ILog
|
|
{
|
|
void Trace(string message);
|
|
void Warning(string message);
|
|
void Info(string message);
|
|
void Debug(string message);
|
|
void Error(string message);
|
|
void Fatal(string message);
|
|
void Trace(string message, params object[] args);
|
|
void Warning(string message, params object[] args);
|
|
void Info(string message, params object[] args);
|
|
void Debug(string message, params object[] args);
|
|
void Error(string message, params object[] args);
|
|
}
|
|
} |