.net框架错误日志位置在哪里

发布于 2024-08-02 13:54:36 字数 87 浏览 3 评论 0原文

我的应用程序无缘无故退出,很可能是由于我使用的探查器中的错误,因为它干扰了所有 CLR 运行时内容。问题是 .Net 框架记录此类错误的任何位置是否有任何文件?

My application exits for no reason, most likely due to errors in the profiler I used because it interferes with all the CLR runtime stuff. The issue is is there any file at any location where .Net framework logs these kind of errors?

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

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

发布评论

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

评论(3

你的往事 2024-08-09 13:54:36

正如 David 所说,这些错误会记录到 Windows 事件日志中的应用程序日志中。

如果您在应用程序终止时需要更多信息,可以订阅 UnhandledException 事件。这样,您将在应用程序终止时收到异常,并且您可以在调试器中检查异常,或将详细信息记录到您选择的文件中,等等。

注意:您无法“处理”传统意义上的异常,您的应用程序会死的。不过,它确实让您有机会在出去时获得一些有用的信息:)

As David says, these errors go to the Application Log in the Windows Event Log.

If you're looking for a bit more information as your application is terminating, you can subscribe to the UnhandledException event. That way you will get an exception as your app terminates, and you can inspect the exception in the debugger, or log details to a file of your choosing, etc.

Note: you cannot "handle" the exception in the traditional sense, your app will die. It does however give you an opportunity to get some useful information on your way out :)

私藏温柔 2024-08-09 13:54:36

这些错误通常会显示在 Windows 事件日志中(通常在应用程序日志中)。

These errors will often show up in the Windows Event Log (usually in the Application log).

水溶 2024-08-09 13:54:36

为了解决程序集加载和绑定等低级 .NET 问题,您可以启用 .NET Fusion 日志记录:
如何在 .网络
只需记住完成后将其禁用即可。

For troubleshooting low-level .NET issues like assembly loading and binding, you could enable .NET Fusion logging:
How to enable assembly bind failure logging (Fusion) in .NET
Just remember to disable it when finished.

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