Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

For Flurry error logging, where can I find the information that I logged?

My errors are getting logged. I can see the errors in the log. I'm trying to figure out how to find the specific information that I'm logging, especially the message parameter. I've tried looking through the documentation and clicking endlessly around the website with no luck.

I'm logging errors to flurry like this.

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error{
    [Flurry logError:@"Location Error" message:error.localizedDescription error:error];
}

The error shows up in the log like this.

Flurry error log

How can I find the error message that I logged?

like image 217
Jeff Wolski Avatar asked Feb 20 '15 15:02

Jeff Wolski


1 Answers

Just saw an answer in a similar post.

In Flurry, go to Technical > Errors. Then at the bottom of the page it shows each error and its message.

Not super intuitive.

like image 108
RyanJM Avatar answered Oct 19 '22 12:10

RyanJM