Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is this "uncaught" seen in event list in flurry site?

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]

like image 788
Sjk Avatar asked Jun 20 '13 10:06

Sjk


2 Answers

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.

like image 164
Yogesh Nagpal Avatar answered Sep 23 '22 15:09

Yogesh Nagpal


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.

like image 24
Rajesh Gauswami Avatar answered Sep 26 '22 15:09

Rajesh Gauswami