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

Objective c 了解BugSense在发送崩溃报告中的用法,objective-c,ios5,bug-tracking,bugsense,Objective C,Ios5,Bug Tracking,Bugsense,我在BugSense站点中生成了一个API,在我最近的一个应用程序中实现了BugSense。我遵循BugSense提供的文档,并在我的应用程序中成功配置了该工具 当我将设备连接到系统并在调试模式下运行应用程序时,我会在控制台窗口中看到下面的日志 BugSense --> Processing crash report... BugSense --> Crashed on 2011-11-23 07:32:13 +0000 BugSense --> Crashed with si

我在BugSense站点中生成了一个API,在我最近的一个应用程序中实现了BugSense。我遵循BugSense提供的文档,并在我的应用程序中成功配置了该工具

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

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,以便在站点中查看崩溃报告?

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

  • 关闭编辑方案中的GDB或LLDB,并遵循BugSense提供的步骤,以下是链接

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

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

    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!