了解 BugSense 在发送崩溃报告中的用法

发布于 2024-12-17 18:01:05 字数 714 浏览 2 评论 0原文

我遇到了 BugSense,我通过在 BugSense 站点中生成 API 在我最近的一个应用程序中实现了它。我按照BugSense提供的DOC在我的APP中成功配置了该工具。

当我将设备连接到系统并在调试模式下运行应用程序时,我在控制台窗口中看到以下日志。

BugSense --> Processing crash report...
BugSense --> Crashed on 2011-11-23 07:32:13 +0000
BugSense --> Crashed with signal SIGABRT (code #0, address=0x34417a1c)
BugSense --> Generating JSON data from crash report...
BugSense --> Posting JSON data...
BugSense --> Server responded with status code: 500

我想知道

  • 生成了什么崩溃报告。
  • 它正在发布什么 JSON 数据。
  • 我的崩溃报告存储在哪里。

我曾尝试在我的应用程序中遇到一些崩溃,但是当我检查 BugSense 网站的进度时,我没有看到任何图形表示或错误报告。

我缺少什么?我应该如何查看崩溃报告?如何将崩溃日志发送到 BugSense,以便我可以在站点中查看崩溃报告?

I have come across BugSense which I had implemented in one of my recent APP by generating a API in BugSense site. I had followed the DOC provided by BugSense and configured the tool successfully in my APP.

When I connect my device to my system and run my APP in debug mode, I see the below log in the console window.

BugSense --> Processing crash report...
BugSense --> Crashed on 2011-11-23 07:32:13 +0000
BugSense --> Crashed with signal SIGABRT (code #0, address=0x34417a1c)
BugSense --> Generating JSON data from crash report...
BugSense --> Posting JSON data...
BugSense --> Server responded with status code: 500

I want to know

  • what crash report is generated.
  • what JSON data it is posting.
  • where my crash report is stored.

I had tried with some crash in my APP, but when I check the BugSense site for the progress I didn't see any graphical representation or error report.

What am i missing? How should I see the crash report? How do I send the crash log to BugSense so that I can see the crash report in the site?

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

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

发布评论

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

评论(1

心碎无痕… 2024-12-24 18:01:05

我已经找到了我的问题的解决方案,下面是我所做的

  1. 在编辑方案中关闭GDB或LLDB并按照BugSense提供的步骤进行操作,这是链接BugSense IOS 集成步骤

  2. 然后在我的应用程序中创建了一个崩溃,并尝试运行该应用程序,当应用程序崩溃时,我得到了以下响应

BugSense -->正在处理崩溃报告...
BugSense -->崩溃于 2011-11-24 08:49:04 +0000
BugSense -->因信号 SIGSEGV 崩溃(代码 SEGV_MAPERR,地址 = 0xbbadbeef)
BugSense -->正在从崩溃报告生成 JSON 数据...
BugSense -->发布 JSON 数据...
BugSense -->服务器响应状态码:200
BugSense -->立即发货完成!

现在我可以向 BugSense 发送崩溃报告并查看有关崩溃的详细报告。

I have found a solution for my question, below is what I did

  1. Turned off the GDB or LLDB in Edit Scheme and followed the steps provided by BugSense, here is the link BugSense IOS integration steps.

  2. Then created a crash in my APP and tried running the APP, when the APP got crashed and I got the below response

BugSense --> Processing crash report...
BugSense --> Crashed on 2011-11-24 08:49:04 +0000
BugSense --> Crashed with signal SIGSEGV (code SEGV_MAPERR, address=0xbbadbeef)
BugSense --> Generating JSON data from crash report...
BugSense --> Posting JSON data...
BugSense --> Server responded with status code: 200
BugSense --> Immediate dispatch completed!

Now I can send crash reports to BugSense and see the detailed report about the crash.

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