using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MrWu.Debug {
///
/// 日志接口
///
public interface IDebug {
///
/// 接收到日志
///
/// 日志内容
/// 日志等级 1 普通日志 2 4 8 16 32 64警告 128 256 512 1024错误日志
void AddLog(string str,DebugLevel level);
}
}