将异常写到日志文件中,可以在调试程序的时候知道程序发生过哪些异常,并且可以知道异常发生的位置。这点对需要进行长时间运行并调试的程序尤为有效。
1 ///2 /// 将异常打印到LOG文件 3 /// 4 /// 异常 5 /// 日志文件地址 6 public static void WriteLog(Exception ex, string LogAddress = "") 7 { 8 //如果日志文件为空,则默认在Debug目录下新建 YYYY-mm-dd_Log.log文件 9 if (LogAddress == "")10 {11 LogAddress = Environment.CurrentDirectory + '\\' +12 DateTime.Now.Year + '-' +13 DateTime.Now.Month + '-' +14 DateTime.Now.Day + "_Log.log";15 }16 //把异常信息输出到文件17 StreamWriter fs = new StreamWriter(LogAddress, true);18 fs.WriteLine("当前时间:" + DateTime.Now.ToString());19 fs.WriteLine("异常信息:" + ex.Message);20 fs.WriteLine("异常对象:" + ex.Source);21 fs.WriteLine("调用堆栈:\n" + ex.StackTrace.Trim());22 fs.WriteLine("触发方法:" + ex.TargetSite);23 fs.WriteLine();24 fs.Close();25 }