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.
How can I find the error message that I logged?