打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
.NET 日志系统设计

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

总体架构图

  • 在这里我把日子的等级分为 跟踪,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");

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
【C#设计模式-适配器模式】
自己最近写的一组日志处理类(支持高并发处理)
步步为营 .NET 设计模式学习笔记 二、Abstract Factory(抽象工厂) - spring yang - 博客园
C#使用读写锁处理多线程并发写入文件问题
100行代码实现了多线程,批量写入,文件分块的日志方法(上)
小话设计模式原则之(2):单一职责原则SRP
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服