码迷,mamicode.com
首页 > 其他好文 > 详细

ExceptionLess 学习

时间:2017-05-20 10:03:05      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:bug   学习   exception   sage   rac   bsp   summary   ror   cli   

excetionless

  测试

 

日志记录

测试2

public class ExceptionLessLog :ILog
    {

        /// <summary>
        /// 跟踪
        /// </summary>
        public void Trace(string message, params string[] tags)
        {
            ExceptionlessClient.Default.CreateLog(message, LogLevel.Trace).AddTags(tags).Submit();
        }

        /// <summary>
        /// 调试
        /// </summary>
        public void Debug(string message, params string[] tags)
        {
            ExceptionlessClient.Default.CreateLog(message, LogLevel.Debug).AddTags(tags).Submit();
        }

        /// <summary>
        /// 信息
        /// </summary>
        public void Info(string message, params string[] tags)
        {
            ExceptionlessClient.Default.CreateLog(message, LogLevel.Info).AddTags(tags).Submit();
        }

        /// <summary>
        /// 警告
        /// </summary>
        public void Warn(string message, params string[] tags)
        {
            ExceptionlessClient.Default.CreateLog(message, LogLevel.Warn).AddTags(tags).Submit();
        }

        /// <summary>
        /// 错误
        /// </summary>
        public void Error(string message, params string[] tags)
        {
            ExceptionlessClient.Default.CreateLog(message, LogLevel.Error).AddTags(tags).Submit();
        }
    }

 

ExceptionLess 学习

标签:bug   学习   exception   sage   rac   bsp   summary   ror   cli   

原文地址:http://www.cnblogs.com/AspCore/p/6881324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!