详细的日志文件
public static void ErrorLog(Exception ex)
{
string FilePath = AppDomain.CurrentDomain.BaseDirectory+"ErrorLog.txt";/bin/Debug
StringBuilder msg = new StringBuilder();
msg.Append("*************************************** \n");
msg.AppendFormat(" 异常发生时间: {0} \n", DateTime.Now);
msg.AppendFormat(" 异常类型: {0} \n", ex.HResult);
msg.AppendFormat(" 导致当前异常的 Exception 实例: {0} \n", ex.InnerException);
msg.AppendFormat(" 导致异常的应用程序或对象的名称: {0} \n", ex.Source);
msg.AppendFormat(" 引发异常的方法: {0} \n", ex.TargetSite);
msg.AppendFormat(" 异常堆栈信息: {0} \n", ex.StackTrace);
msg.AppendFormat(" 异常消息: {0} \n", ex.Message);
msg.Append("***************************************");
try
{
if (File.Exists(FilePath))
{
using (StreamWriter tw = File.AppendText(FilePath))
{
tw.WriteLine(msg.ToString());
}
}
else
{
TextWriter tw = new StreamWriter(FilePath);
tw.WriteLine(msg.ToString());
tw.Flush();
tw.Close();
tw = null;
}
}
catch (Exception)
{
Console.ReadKey();
}
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步