欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.NET 日志系统设计思路及实现代码

程序员文章站 2024-02-26 14:39:52
日志很明显是帮助大家定位到问题的一个很重要的手段,本来是想直接使用的nlog 来做系统的日志工具,哎伤不起,一变态非要说这个有很多不可控制的因素,这里我给大家讲一下我是怎么...

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

总体架构图

.NET 日志系统设计思路及实现代码

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

复制代码 代码如下:

/// <summary>
    /// 日志等级
    /// </summary>
    public enum loglevel
    {
        track=1,
        bug,
        error
    }

•    这里考虑日志的模块的可扩展性 (这里支持 数据库 和文件 2种方式)  这里使用适配器模式来完成本模块。 这里给大家来年终福利。贴点代码
定义一个接口ilogtarget
复制代码 代码如下:

public interface ilogtarget
    {
        /// <summary>
        /// 写入追踪信息
        /// </summary>
        /// <param name="logcontent"></param>
        void writetrack(string logcontent);

        /// <summary>
        /// 写入bug信息
        /// </summary>
        /// <param name="logcontent"></param>
        void writebug(string logcontent);

        /// <summary>
        /// 写入错误信息
        /// </summary>
        /// <param name="logcontent"></param>
        void writeerror(string logcontent);

    }



•     filelog ,和dblog 2个类实现上面的接口 这里不贴上具体的现实
复制代码 代码如下:

/// <summary>
    /// 文件日志实现类
    /// </summary>
    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)
        {
            _adaptee.writetrack(logcontent);
        }

        public void writebug(string logcontent)
        {
            _adaptee.writebug(logcontent);
        }

        public void writeerror(string logcontent)
        {
            _adaptee.writeerror(logcontent);
        }
    }


•   调用方式
复制代码 代码如下:

smartlog log =new smartlog (new filelog());

log.writetrack("hello word");