c#输出错误日志到指定文件夹

把输出错误写成一个方法,当出现错误的时候调用方法,把时间和出错的方法名用作文件名,输出在本地某个位置

csharp 复制代码
  //错误输出
        public string WriteERR(string PageName, string ERR)
        {
            // 获取当前时间
            DateTime currentTime = DateTime.Now;
            string formattedTime = currentTime.ToString("yyyyMMddHHmm") + "_";
            //获取配置文件里面配置的错误输出地址
            string filePath = ConfigurationManager.AppSettings["ErrPathLog"].ToString() + "\\" + formattedTime + PageName + ".txt";
            try{
                // 确保目录存在
                string directoryPath = Path.GetDirectoryName(filePath);
                if (!Directory.Exists(directoryPath)) {
                    Directory.CreateDirectory(directoryPath);
                }
                // 使用 StreamWriter 创建和写入文件
                using (StreamWriter writer = new StreamWriter(filePath)){
                    writer.Write(ERR);
                }
                return null;
            }
            catch (Exception E){
                string methodName = System.Reflection.MethodBase.GetCurrentMethod().Name;
                WriteERR(methodName, E.ToString());
                return("ERR" + E.Message);
            }
        }

方法代码调用

csharp 复制代码
public ActionResult OSLL_index(){
            try
            {
                
            catch (Exception E)
            {
            //获取到方法名称作为文件名输出
                string methodName = System.Reflection.MethodBase.GetCurrentMethod().Name;
                WriteERR(methodName, E.ToString());
                return Json("ERR" + E.Message);
            }
            return View();
        }

当软件部署后。即可在出错时输出错误信息

相关推荐
wangnaisheng3 小时前
.NET中的框架和运行环境
c#·开发模式
时光追逐者4 小时前
C#/.NET/.NET Core技术前沿周刊 | 第 20 期(2025年1.1-1.5)
c#·.net·.netcore·微软技术
苏克贝塔4 小时前
c#版本、.net版本、visual studio版本之间的对应关系
c#·.net·visual studio
KpLn_HJL7 小时前
leetcode - 916. Word Subsets
leetcode·c#·word
码农君莫笑9 小时前
WPF中组件之间传递参数的方法研究
microsoft·c#·wpf
友恒13 小时前
WPF基础(1.1):ComboBox的使用
c#·wpf
码农君莫笑14 小时前
从 C# 和 WPF 转向 Blazor 开发快速精通方法
c#·wpf·blazor
SunkingYang15 小时前
如何设置通过Visual Studio(VS)打开的C#项目工具集?
ide·c#·visual studio·vs·修改·工具集·平台工具集
※※冰馨※※15 小时前
[C#] 调用matlab 类型初始值设定项引发异常
matlab·c#