初版的功能
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
@@ -12,9 +12,15 @@ namespace FATrace.WPLApp.Services
|
||||
public interface ILogService
|
||||
{
|
||||
void Debug(string msg);
|
||||
void Debug(string msg, Exception ex);
|
||||
void Error(string msg);
|
||||
void Error(string msg, Exception ex);
|
||||
void Error(Exception ex);
|
||||
void Fatal(string msg);
|
||||
void Fatal(string msg, Exception ex);
|
||||
void Info(string msg);
|
||||
void Info(string msg, Exception ex);
|
||||
void Warn(string msg);
|
||||
void Warn(string msg, Exception ex);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user