iPhone最新版Flurry 2.8.4无法禁用调试日志
我正在使用适用于 iPhone 的 Flurry SDK 的最新版本。它比早期版本工作得更好。但我无法按照他们的指示禁用控制台中的调试日志
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[FlurryAPI setDebugLogEnabled:NO];
[FlurryAPI startSession:#FLURRY_ID];
}
但它仍然记录在我的控制台中
Flurry:初始化会话来自 从开始时间开始[2011-03-12 05:54:58 +0000]
Flurry:已创建活动会话 API
Flurry:会议报告结束 已启用[1]
Flurry:会话报告暂停 已启用[1]
Flurry:已启用事件日志记录[1]
Flurry:完成启动会话 api密钥
Flurry:将会话发送到服务器 withTimeout[0]
Flurry:从以下位置创建 HTTP 数据 会话
乱舞:cacheTimeStamp[0] numCachedItems[0]
Flurry:协议[15]平台[2] 代理[47]
I'm using latest version of Flurry SDK for iPhone. It works better than the earlier version. But I can't disable the debugging logs in console, as per their instruction
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[FlurryAPI setDebugLogEnabled:NO];
[FlurryAPI startSession:#FLURRY_ID];
}
But still its logging in my console
Flurry: Initialized session from
scratch with startTime[2011-03-12
05:54:58 +0000]Flurry: Created active session with
APIFlurry: Session reports on close
enabled[1]Flurry: Session reports on pause
enabled[1]Flurry: Event logging enabled[1]
Flurry: Finish starting session with
apiKeyFlurry: Sending sessions to server
withTimeout[0]Flurry: Creating HTTP data from
sessionsFlurry: cacheTimeStamp[0]
numCachedItems[0]Flurry: protocol[15] platform[2]
agent[47]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请发送电子邮件至 [电子邮件受保护],以便我们进一步诊断您的问题。支持通常涉及讨论帐户详细信息,但是,一旦我们确定了根本原因,我们就可以在此处发布答案,以便社区了解我们的发现。
感谢您的反馈。
更新
我们能够验证该问题。在 2.8.4 的初始版本中设置了不正确的配置标志,导致了此行为。 3 月 13 日之后下载的任何 2.8.4 SDK 都不会出现此行为。如果您在此日期之前收到 SDK,请下载当前版本的 2.8.4。
再次感谢您的反馈。
Please email us at [email protected] so we can further diagnose your issue. Support usually involves discussing account details, however, once we determine the underlying cause we can post the answer here so the community has the insight of our findings.
Thanks for your feedback.
UPDATE
We were able to verify the issue. An incorrect configuration flag was set on the initial release of 2.8.4 that caused this behavior. Any downloads of the 2.8.4 SDK after 3/13 will not experience this behavior. Please download the current build of 2.8.4 if you received the SDK prior to this date.
Again, thank you for the feedback.
我正在做的一个项目也有同样的问题。 (我确实在 Anthony W 建议的时间范围内下载了 SDK)。
我只是通过替换项目中的 libFlurry.a 文件来修复此问题。
One of the projects I was working on had this same issue. (I did download the SDK in the timeframe suggested by Anthony W).
I simply fixed this by replacing the libFlurry.a file in my project.