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

LogHelper

时间:2018-08-03 22:35:21      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:ati   sys   contex   web   using   utf8   str   详细信息   mod   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;

namespace MvcApplication1.Common
{
    public class LogHelper
    {
        public static void WriteError(Exception ex)
        {
            string path = HttpContext.Current.Server.MapPath("~/Logs/" + DateTime.Now.ToString("yyyy-MM-dd") + ".text");
            FileStream fs;
            if (File.Exists(path))
            {
                fs = new FileStream(path, FileMode.Append, FileAccess.Write);
            }
            else
            {
                fs = File.Create(path);
            }
            string errorinfo = "日期:" + DateTime.Now.ToString("hh:mm:ss") + "\r\n" + "摘要:" + ex.Message + "\r\n" + "详细信息:" + ex.StackTrace;
            byte[] bit = System.Text.Encoding.UTF8.GetBytes(errorinfo);
            fs.Write(bit, 0, bit.Length);
            fs.Close();
            fs.Dispose();

        }
    }
}

 

LogHelper

标签:ati   sys   contex   web   using   utf8   str   详细信息   mod   

原文地址:https://www.cnblogs.com/jbdxbl/p/9416397.html

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