1 private void LogError(Exception ex) 2 { 3 string Path = AppDomain.CurrentDomain.BaseDirectory + @"\ErrorLog.txt"; 4 FileStream file = new FileStream(Path, FileMode.OpenOrCreate); 5 StreamWriter Write = new StreamWriter(file); 6 Write.WriteLine(ex.ToString()); 7 Write.Close(); 8 }
只需要在当前项目的根目录下创建一个文件,如果已经存在就打开文件,把捕获的错误写入,然后记得要关闭
原文地址:https://www.cnblogs.com/chenchen1234/p/10955651.html
时间: 2024-11-09 05:17:45