I have an error that is preventing some users from authenticating via OAuth. The authentication framework is returning an NSError
in some cases that does not cause a hard crash - but I'd like to log it in some way to Crashlytics. Is this possible? I tried logging with:
NSDictionary *attributes = @{ ... };
[Crashlytics logEvent:@"authenticate.error" attributes:attributes];
But I can't seem to find where that event appears within the internal reporting tool.
Edit: I've found an equivalent to what I'm trying to do for Android (but am unsure how to do something similar in iOS) here: http://support.crashlytics.com/knowledgebase/articles/202805-logging-caught-exceptions