我正在尝试测试我的 Rollbar 安装是否正常工作,并且我在我的applicationDidFinishLaunchingWithOptions
:
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
[NSException raise:NSGenericException format:@"Everything is ok. This is just a test crash."];
});
// Also tried this to simulate bad access
strcpy(0, "bla");
除了它没有显示在仪表板中。
但是,这样做:
[Rollbar infoWithMessage:@"Testing the install"];
有没有办法模拟实际发送到仪表板的测试崩溃?赞赏。虽然我确实觉得这种情况很奇怪,因为 Rollbar 应该只是得到所有这些错误。
更新(2015 年 10 月 15 日)
我实际上给 Rollbar 发了电子邮件,他们已经努力解决这个问题几个星期了。也许新的 iOS 捏造了他们的服务?
更新(2016 年 5 月 15 日)
他们仍然没有回复我这件事。我想他们有一些更高优先级的问题要处理!