What is this “uncaught” seen in event list in flurry site?

五迷三道 提交于 2019-12-23 12:07:59

问题


In flurry site, in Event logs session instead of events sometimes

"uncaught"

is showing .Can anyone tell what does it means? Is it any error from app side? [all events are displayed in site but in some sessions it shows one or two events then uncaught]


回答1:


If you are on the latest Flurry SDK version, which has the errors beta enabled, then the uncaught would appear under event logs, which is normal.




回答2:


You need to set setCaptureUncaughtExceptions as false where you're configuring flurry :

FlurryAgent.setCaptureUncaughtExceptions(false);

From flurry doc:

Used to allow/disallow Flurry SDK to report uncaught exceptions. The feature is enabled by default, and if you would like to disable this behavior, this must be called before calling init.

Hope this helps you.




回答3:


The same problem was when I used FlurryAgent.setLogEvents(false); (I thought that this call disables logging output to the android adb log). Instead this call turns off event logging in Flurry Web Interface.

So just remove FlurryAgent.setLogEvents(false) from your code.




回答4:


It is indeed an error in your app. An exception is raised, and you are not catching it. To know what is going on, you need to log uncaught exceptions to Flurry as well. This video explains how to do so.



来源:https://stackoverflow.com/questions/17211814/what-is-this-uncaught-seen-in-event-list-in-flurry-site

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!