从C#打印堆栈跟踪信息

时间:2008-09-09 12:45:34

标签: c# parsing error-handling stack-trace

作为我们产品中某些错误处理的一部分,我们想要转储一些堆栈跟踪信息。但是,我们遇到许多用户只需截取错误消息对话框的屏幕截图,而不是向我们发送程序中可用的完整报告的副本,因此我想在此对话框中提供一些最小的堆栈跟踪信息。

我的机器上的.NET堆栈跟踪如下所示:

at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamReader..ctor(String path, Encoding encoding, Boolean detectEncodingFromByteOrderMarks, Int32 bufferSize)
at System.IO.StreamReader..ctor(String path)
at LVKWinFormsSandbox.MainForm.button1_Click(Object sender, EventArgs e) in C:\Dev\VS.NET\Gatsoft\LVKWinFormsSandbox\MainForm.cs:line 36

我有这个问题:

格式如下:

at <class/method> [in file:line ##]

然而,关键字中,我认为如果它们运行,比如挪威的.NET运行时而不是我安装的英文版,它们将被本地化

有没有办法让我以语言中立的方式分离这个堆栈跟踪,这样我才能只显示那些有这个条目的文件和行号?

换句话说,我想从上面的文字中获得这些信息:

C:\Dev\VS.NET\Gatsoft\LVKWinFormsSandbox\MainForm.cs:line 36

您可以给出的任何建议都会有所帮助。

5 个答案:

答案 0 :(得分:71)

您应该能够通过说

来获取StackTrace对象而不是字符串
var trace = new System.Diagnostics.StackTrace(exception);

然后,您可以自己查看框架,而无需依赖框架的格式。

另请参阅:StackTrace reference

答案 1 :(得分:28)

以下是我用来执行此操作而无异常的代码

public static void LogStack()
{
  var trace = new System.Diagnostics.StackTrace();
  foreach (var frame in trace.GetFrames())
  {
    var method = frame.GetMethod();
    if (method.Name.Equals("LogStack")) continue;
    Log.Debug(string.Format("{0}::{1}", 
        method.ReflectedType != null ? method.ReflectedType.Name : string.Empty,
        method.Name));
  }
}

答案 2 :(得分:18)

只需将这个15秒复制粘贴答案:

static public string StackTraceToString()
{
    StringBuilder sb = new StringBuilder(256);
    var frames = new System.Diagnostics.StackTrace().GetFrames();
    for (int i = 1; i < frames.Length; i++) /* Ignore current StackTraceToString method...*/
    {
        var currFrame = frames[i];
        var method = currFrame.GetMethod();
        sb.AppendLine(string.Format("{0}:{1}",                    
            method.ReflectedType != null ? method.ReflectedType.Name : string.Empty,
            method.Name));
    }
    return sb.ToString();
}

(基于Lindholm回答)

答案 3 :(得分:8)

或者甚至更短的版本..

Console.Write(exception.StackTrace);

答案 4 :(得分:0)

作为替代方案,log4net虽然有潜在危险,但它给了我比System.Diagnostics更好的结果。基本上在log4net中,您有一个各种日志级别的方法,每个级别都有一个Exception参数。因此,当您传递第二个异常时,它会将堆栈跟踪打印到您配置的任何一个appender。

示例:Logger.Error("Danger!!!", myException );

输出取决于配置,看起来像

System.ApplicationException: Something went wrong.
   at Adapter.WriteToFile(OleDbCommand cmd) in C:\Adapter.vb:line 35
   at Adapter.GetDistributionDocument(Int32 id) in C:\Adapter.vb:line 181
   ...