• WriteLog


    public class WriteLog
        {
            /// <summary>
            /// 创建日志文件
            /// </summary>
            /// <param name="ex">异常类</param>
            public static void CreateLog(Exception ex)
            {
                string path = Application.StartupPath+"\log";
                if (!Directory.Exists(path))
                {
                    //创建日志文件夹
                    Directory.CreateDirectory(path);
                }
                //发生异常每天都创建一个单独的日子文件[*.log],每天的错误信息都在这一个文件里。方便查找
                path += "\"+DateTime.Now.ToShortDateString() + ".log";
                WriteLogInfo(ex, path);
            }
            /// <summary>
            /// 写日志信息
            /// </summary>
            /// <param name="ex">异常类</param>
            /// <param name="path">日志文件存放路径</param>
            private static void WriteLogInfo(Exception ex, string path)
            {
                using (StreamWriter sw = new StreamWriter(path, true, Encoding.Default))
                {
                    sw.WriteLine("*****************************************【"
                                   + DateTime.Now.ToLongTimeString()
                                   + "】*****************************************");
                    if (ex != null)
                    {
                        sw.WriteLine("【ErrorType】" + ex.GetType());
                        sw.WriteLine("【TargetSite】" + ex.TargetSite);
                        sw.WriteLine("【Message】" + ex.Message);
                        sw.WriteLine("【Source】" + ex.Source);
                        sw.WriteLine("【StackTrace】" + ex.StackTrace);
                    }
                    else
                    {
                        sw.WriteLine("Exception is NULL");
                    }
                    sw.WriteLine();
                }
            }
        }

  • 相关阅读:
    如何使标签a处于不可用状态
    document.referrer的使用和window.opener 跟 window.parent 的区别
    纯CSS让overflow:auto页面滚动条出现时不跳动
    闭包的使用实例
    VMware workstation使用小技巧
    个人命令简记
    中国剩余定理
    UVA 10603 倒水问题
    Haybale Stacking(差分数组 + 求中位数的一些方法 + nth_element)
    POJ 1511 Invitation Cards (最短路的两种方法spfa, Dij)
  • 原文地址:https://www.cnblogs.com/gssajl/p/6215305.html
Copyright © 2020-2023  润新知