提交功能
This commit is contained in:
17
Log/ILog.cs
Normal file
17
Log/ILog.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace ACBuildService;
|
||||
|
||||
public interface ILog
|
||||
{
|
||||
void Info(string message);
|
||||
void Info(string message, params object[] args);
|
||||
void Warning(string message);
|
||||
void Warning(string message, params object[] args);
|
||||
void Error(string message);
|
||||
void Error(string message, params object[] args);
|
||||
void Trace(string message);
|
||||
void Trace(string message, params object[] args);
|
||||
void Debug(string message);
|
||||
void Debug(string message, params object[] args);
|
||||
void Fatal(string message);
|
||||
void Fatal(string message, params object[] args);
|
||||
}
|
||||
Reference in New Issue
Block a user