如何将崩溃报告的电子邮件地址重定向到我的电子邮件(对于我的可可应用程序)

发布于 2024-11-03 18:46:21 字数 127 浏览 1 评论 0原文

我想知道是否有任何方法可以将默认的 OS X 崩溃报告者电子邮件地址设置为我的电子邮件地址(对于我的可可应用程序)。

我希望将崩溃报告发送到我的电子邮件地址,而不是 Apple 的电子邮件地址。 ;)

谢谢。

I'd like to know if there is any way how to set default OS X Crash reporter email address to my email address (for my cocoa application).

I'd like to get my Crash reports to my email, not Apple's. ;)

Thank you.

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

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

发布评论

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

评论(2

是你 2024-11-10 18:46:21

正如mipadi所说,崩溃报告不是通过电子邮件发送的,而是上传到某些Apple服务器的。要拦截此事件和/或将其发送到您自己的服务器,已经有几个类和框架来处理此问题,以下是一些:

更复杂(捕获事件):

  • Breakpad(由 Google 提供,捕获事件,生成自己的故障转储 (minidump) 并模拟 Apple 崩溃报告器界面,其中包含您的公司名称)
  • PLCrashReporter(与 Breakpad 类似,捕获该事件会生成自己的故障转储,但没有提供最适合 iOS 的默认 UI - 它是为在 AppStore 的限制内运行而编写的,并且 Mac OS X 上的 x86-64 支持仍处于实验阶段。

简单(阅读故障转储):

As mipadi stated, crash reports arent sent by email, but are uploaded to some Apple server. To intercept this and/or send it to your own server there are already several classes and frameworks to handle this, here are a few:

More sophisticated (catch the event):

  • Breakpad (by Google, catches the event, generates its own crash dump (minidump) and simulates the Apple crash reporter interface with your company name in it)
  • PLCrashReporter (Similar to Breakpad, catches the event, generates its own crash dump, but no default UI is provided. The library is best suited for iOS -- it was written to operate within the AppStore's constraints, and x86-64 support on Mac OS X remains experimental).

Simple (read the crash dumps):

余罪 2024-11-10 18:46:21

不会,崩溃报告总是发送给 Apple。如果您想自动接收应用程序崩溃报告的副本,则必须编写自己的解决方案。一种方法是检查 ~/Library/Logs/DiagnosticReports 中是否有包含应用程序名称的 .crash 文件,并自动通过电子邮件将它们发送给您,尽管这会增加开销您的计划,因此您必须决定它是否值得。

No, crash reports always go to Apple. If you want to automatically receive copies of your application's crash reports, you'll have to write your own solution. One way would be to check ~/Library/Logs/DiagnosticReports for .crash files containing your app's name, and automatically email them to you, although that'll add overhead to your program so you'll have to decide if it's worth it.

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