未处理的 ASP.NET 错误 - 是否有可用的日志记录?

发布于 2024-11-07 16:33:41 字数 152 浏览 0 评论 0原文

我们遇到了一个问题,即我们的应用程序集群的根部发生了 .NET 错误,该错误绕过了我们的错误处理并显示通用 ASP.NET 错误消息。

如果绕过了我们的日志记录,是否可以在任何地方检查以查看这些错误? (默认 .NET/IIS 日志记录或其他什么?)

谢谢。

We've had an issue where a .NET error occured at the root of our application cluster that bypassed our error handling and was displaying the generic ASP.NET error message.

Is there anywhere to check to see these errors if it bypassed our logging of them? (Default .NET/IIS logging or anything?)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

燃情 2024-11-14 16:33:41

您应该能够检查应用程序事件查看器。

  1. 右键单击我的电脑
  2. 管理
  3. 事件查看器
  4. 应用程序

这里的假设是它冒泡并且没有被捕获到任何地方。

You should be able to check the Application Event Viewer.

  1. Right-click My Computer
  2. Manage
  3. Event Viewer
  4. Application

The assumption here is that it bubbled up and didn't get caught anywhere.

故人的歌 2024-11-14 16:33:41
// Inside your logger constructor:
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(AppDomainUnhandledException);

// Then:
private void AppDomainUnhandledException(Object sender, UnhandledExceptionEventArgs e)
{
    // Log as unhandled exception: e.ExceptionObject.ToString()
}
// Inside your logger constructor:
AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(AppDomainUnhandledException);

// Then:
private void AppDomainUnhandledException(Object sender, UnhandledExceptionEventArgs e)
{
    // Log as unhandled exception: e.ExceptionObject.ToString()
}
两个我 2024-11-14 16:33:41

如果您使用的是 IIS7,您可以通过 IIS 管理器添加失败请求跟踪。有关详细信息,请参阅以下文章:

http://learn.iis.net/page.aspx/266/troubleshooting-failed-requests-using-tracing-in-iis-7/

If you are using IIS7 you can add failed request tracing via IIS Manager. See the following article for more information:

http://learn.iis.net/page.aspx/266/troubleshooting-failed-requests-using-tracing-in-iis-7/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文