当前位置

首页 > 语文基础 > 日志 > 怎么实现日志模块

怎么实现日志模块

推荐人: 来源: 阅读: 1.84W 次

日志很明显是帮助大家定位到问题的一个很重要的手段,本来是想直接使用的 来做系统的日志工具,哎伤不起,一变态非要说这个有很多不可控制的因素,这里我给大家讲一下我是怎么实现日志模块的,欢迎拍砖.

怎么实现日志模块

总体架构图

在这里我把日子的等级分为 跟踪,BUG 和错误 3种 定义枚举如下

复制代码 代码如下:

///

/// 日志等级

///

public enum Loglevel

{

Track=1,

Bug,

Error

}

这里考虑日志的模块的可扩展性 (这里支持 数据库 和文件 2种方式) 这里使用适配器模式来完成本模块。 这里给大家来年终福利。贴点代码

定义一个接口ILogTarget

复制代码 代码如下:

public interface ILogTarget

{

///

/// 写入追踪信息

///

///

void WriteTrack(string LogContent);

///

/// 写入BUG信息

///

///

void WriteBug(string LogContent);

///

/// 写入错误信息

///

///

void WriteError(string LogContent);

}

FileLog ,和DBLog 2个类实现上面的接口 这里不贴上具体的现实

复制代码 代码如下:

///

/// 文件日志实现类

///

public class FileLog : ILogTarget

{

public void WriteTrack(string LogContent)

{

throw new NotImplementedException();

}

public void WriteBug(string LogContent)

{

throw new NotImplementedException();

}

public void WriteError(string LogContent)

{

throw new NotImplementedException();

}

}

复制代码 代码如下:

public class DBLog : ILogTarget

{

public void WriteTrack(string LogContent)

{

throw new NotImplementedException();

}

public void WriteBug(string LogContent)

{

throw new NotImplementedException();

}

public void WriteError(string LogContent)

{

throw new NotImplementedException();

}

}

复制代码 代码如下:

public class SmartLog

{

private ILogTarget _adaptee;

public SmartLog(ILogTarget tragent)

{

this._adaptee = tragent;

}

public void WriteTrack(string LogContent)

{

_eTrack(LogContent);

}

public void WriteBug(string LogContent)

{

_eBug(LogContent);

}

public void WriteError(string LogContent)

{

_eError(LogContent);

}

}

调用方式

复制代码 代码如下:

SmartLog log =new SmartLog (new FileLog());

eTrack("Hello word");