主页 > 知识库 > .NET 日志系统设计思路及实现代码

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

热门标签:400电话办理信任翰诺科技 云狐人工智能电话机器人 电销机器人 数据 地图标注多少钱一张 宿迁智能外呼系统排名 怎样给陕西地图标注颜色 福州人工智能电销机器人加盟 广州销售外呼系统定制 ai电销机器人对贷款有帮助吗

日志很明显是帮助大家定位到问题的一个很重要的手段,本来是想直接使用的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");

您可能感兴趣的文章:
  • .net 日志系统解析

标签:大兴安岭 宜春 绵阳 新疆 曲靖 焦作 延安 黄南

巨人网络通讯声明:本文标题《.NET 日志系统设计思路及实现代码》,本文关键词  .NET,日志,系统,设计,思路,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《.NET 日志系统设计思路及实现代码》相关的同类信息!
  • 本页收集关于.NET 日志系统设计思路及实现代码的相关信息资讯供网民参考!
  • 推荐文章