using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SKMC.Api.Common
{
///
/// 通用的日志接口
///
public interface ILogger
{
///
/// 调试跟踪(预留)
///
///
void Trace(string message);
void Debug(string message);
void Info(string message);
void Warn(string message);
void Error(string message, Exception ex = null);
void Fatal(string message, Exception ex = null);
}
}