2011-11-23 74 views
2

我遇到了BugSense,這是我通過在BugSense網站中生成API在最近的APP中實現的。我遵循了由BugSense提供的DOC,並在我的APP中成功配置了該工具。瞭解發送崩潰報告時的BugSense使用情況

當我將設備連接到我的系統並以調試模式運行我的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,以便我可以在網站中看到崩潰報告?

回答

1

我已經找到了我的問題的解決方案,下面是我做的

  1. 關閉。在編輯計劃的GDB或LLDB和隨後BugSense提供的步驟,這裏是鏈接BugSense IOS integration steps

  2. 然後在我的應用程序創建的崩潰,並試圖運行的應用程序,當應用程序得到墜毀,我得到了下面的響應

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! 

現在我可以發送崩潰報告BugSense並查看關於崩潰的詳細報告。