Skip to content

Instantly share code, notes, and snippets.

@ydn
Last active August 29, 2015 14:22
Show Gist options
  • Save ydn/6f65058e0253c0e9d50e to your computer and use it in GitHub Desktop.
Save ydn/6f65058e0253c0e9d50e to your computer and use it in GitHub Desktop.
Flurry Error logging with Swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
var err: NSError?
// Log an error
Flurry.logError("ERROR_ID", "MESSAGE", exception: err);
// Your code...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment