收集系统和环境信息
关于应用程序崩溃,我们正在研究收集用户/环境和崩溃信息的最佳方法,以便我们可以将其通过电子邮件发送给我们。
是否有任何库(开源或商业)可以很好地做到这一点?
我们的应用程序是一个用 c# .Net 和 swigged c++ 代码编写的桌面应用程序。
谢谢,
利隆
On application crashes, we are looking into the best way to collect user/environment and crash information so we can have it emailed to us.
Are there any libraries (open-source or commercial) which do this well?
Our application is a desktop application written in c# .Net with swigged c++ code.
Thanks,
Liron
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
许多混淆工具都包含错误报告,其中包括此类诊断功能。例如:
SmartAssembly 包含以下功能:自动错误报告。
Many obfuscation tools include error reporting, which includes this type of diagnostic functionality. For example:
SmartAssembly includes the ability to have Automated Error Reporting.
This is also included in the latest versions of Dotfuscator.
我喜欢 Bugtrap 提供的功能,收集故障转储和“发送到”功能。故障转储 + WinDbg 为您提供了调试客户端错误所需的工具,其体验非常接近您在 Visual Studio 中进行调试时的体验。
Bugtrap:
http://www.codeproject.com/KB/applications/BugTrap.aspx
I like the functionality provided by Bugtrap, collecting crash dumps and "send to" functionality. Crash dumps + WinDbg gives you the tools needed to debug client errors with an experience very close to what you are used to when debugging in Visual Studio.
Bugtrap:
http://www.codeproject.com/KB/applications/BugTrap.aspx