Crashlytics record error

Viewed 6699

I am recording an error using Crashlytics for iOS.

NSDictionary *detail = @{@"message":errorWithURL, @"response":jsonString};
[[Crashlytics sharedInstance] recordError:[NSError errorWithDomain:@"send request" code:0 userInfo:detail]];

But I do not see the message in Crashlytics console.

See here.

Am I doing something wrong here?

2 Answers

Please check if you uploaded DSYM file with your build. If the DSYM file was supposed to be uploaded via a Fastlane job, then the upload might have failed.

Related