Flurry 中有可用的详细模式吗?
考虑到 Flurry“事件”显然需要几个小时才能出现在他们的 Web 服务器上,因此调试速度有点慢。如果有某种“详细”模式可以将 Flurry 事件记录到 iPhone 调试器控制台,那将是最有利的,但我在(非常有限的)Flurry 文档中没有看到任何选项。
有谁知道是否有某种隐藏选项可以启用详细输出? (如果是这样,如何访问它?)
Given that it apparently takes hours for a Flurry "event" to make it to appear on their web server, debugging is kind of slow. It would be most advantageous if there were some sort of "verbose" mode that would cause Flurry events to be logged to the iPhone debugger console, but I don't see any option for that in the (very limited) Flurry documentation.
Does anyone know if there is some sort of hidden option to enable verbose output? (And, if so, how to access it?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
[FlurryAPI setDebugLogEnabled:YES];
? (它通过许多其他方法在 Flurry 头文件中公开)。2016 年及以后的更新:自从我使用 Flurry 以来已经有 5 年多了,我的答案充其量是不相关的。我建议查阅 Flurry 的文档。
Have you tried
[FlurryAPI setDebugLogEnabled:YES];
? (it's exposed in Flurry header file with a bunch of other methods).Update for 2016 and later: it's been 5+ years since I've used Flurry and my answer is not relevant at best. I'd recommend consulting Flurry's documentation.