ASP Core 5 如何获取Exception中的方法名和行号

How to get the method name and line number in Exception in ASP Core 5

我想获取出错时的方法名和行号,我用的是Core 5

        try
        {
           //My code
        }
        catch (Exception ex)
        {
            _logger.LogError(ex, "Method Name / Line Number");
        }

更新:

我找到了这样的解决方案:

_logger.LogError(ex, "\n=> ex Error: " + ex + "\n=> Action Name: " + ex.TargetSite.ReflectedType.Name + "\n=> Error Message: " + ex.Message + "\n=> Line Number: " + ex.LineNumber());

异常情况下对 ToString() 的简单调用将为您提供所需的完整信息。例如当我们运行下面的代码:

public static void Main()
{
    try
    {
        //my code
        throw new ArgumentException();
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.ToString());
    }
}

输出有点像:

System.ArgumentException: Value does not fall within the expected range.
   at ConsoleApp.Program.Main() in C:\Users\USER\source\Playground\ConsoleApp1\Program.cs:line 20

其中 Main() 是方法名称,20 是行号。

为了获得所要求的格式,我们可以围绕异常编写一个包装器并从中获取行号:

using System;
using System.Reflection;

namespace ConsoleApp
{
    class Program
    {
        public static void Main()
        {
            try
            {
                //my code
                throw new ArgumentException();
            }
            catch (Exception ex)
            {
                Console.WriteLine(MethodBase.GetCurrentMethod().Name + "/" + GetLineNumber(ex));
            }
        }

        public static int GetLineNumber(Exception ex)
        {
            var lineNumber = 0;
            const string lineSearch = ":line ";
            var index = ex.StackTrace.LastIndexOf(lineSearch);
            if (index != -1)
            {
                var lineNumberText = ex.StackTrace.Substring(index + lineSearch.Length);
                if (int.TryParse(lineNumberText, out lineNumber))
                {
                }
            }
            return lineNumber;
        }
    }
}

注意:在提取行方法中,我们正在获取最上面的异常。当我们的堆栈跟踪中有一系列异常时,这会派上用场。