Last active
August 29, 2015 14:22
-
-
Save ydn/6f65058e0253c0e9d50e to your computer and use it in GitHub Desktop.
Flurry Error logging with Swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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