Feature Request
iOS: Tag all the exception sent by the sharedReporter
Current Status:
Completed
Paul
iOS / Swift
Hi, I'd like to quickly distinguish exceptions coming from different schemes (TEST, LIVE and DEV). I would like to configure the sharedReporter to send a tag with each exception. Can we use a function like this:
[[Raygun sharedReporter] setTags: myTags];
Or can I modify the exception before it sends?
Cheers, Paul
Raygun
Jason Fauchelle
Posted on
Feb 11 2016
Raygun4iOS 2.2.0 has been released which includes a global tags feature. You can set tags on the sharedReporter as follows, which will causes those tags to always be sent with any handled or unhandled exceptions.
[[Raygun sharedReporter] setTags:@[@"Global tag"]];
-Jason Fauchelle