using System; namespace YBDevice.Core { /// /// 日志处理 /// public interface ILoggerService { /// /// 添加日志 /// /// 日志内容 /// 1-error,2-information,3-warning,4-debug,5-fatal void AddLogger(string msg, int type = 2); /// /// 添加日志 /// /// 异常信息 /// 参数 /// 程序 /// 1-error,2-information,3-warning,4-debug,5-fatal void AddErrorLogger(Exception ex, string param = "", string program = "", int type = 1); } }