添加到错误消息的有用值 .NET
在我的应用程序范围的错误处理中,我返回主机名以查看它发生在哪台计算机上、应用程序版本、Windows 版本、包含所有内部异常的异常以及堆栈跟踪。
在 MyApplication_UnhandledException 方法中您可以获得哪些其他信息对跟踪错误有用?
On my application wide error handling I'm returning the host name to see what computer it happened on, application version, windows version, exception with all inner exceptions, and the stack trace.
What other information can you get while inside the MyApplication_UnhandledException method that would be useful for tracking down an error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果使用log4net之类的东西,就可以获得线程信息,事实证明是在不止一次追踪难以捉摸的错误时很有用。
If you use something like log4net, you can get thread information, which has proved to be useful on more than one occasion for tracking down an elusive bug.
例如,您可能想要查看 ASP.NET 运行状况监控在处理未处理的异常时在事件日志中放置的内容。 另请查看企业库,了解日志记录应用程序块允许您添加哪些内容。
As an example, you might want to look at what ASP.NET Health Monitoring places in the event log when it processes an unhandled exception. Also look at Enterprise Library to see what the Logging Application Block permits you to add.