.net框架错误日志位置在哪里
我的应用程序无缘无故退出,很可能是由于我使用的探查器中的错误,因为它干扰了所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如 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 :)
这些错误通常会显示在 Windows 事件日志中(通常在应用程序日志中)。
These errors will often show up in the Windows Event Log (usually in the Application log).
为了解决程序集加载和绑定等低级 .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.