iOS crash log catch, debug info.. Catch and send via email to the Dev team iOS crash log catch, debug info.. Catch and send via email to the Dev team ios ios

iOS crash log catch, debug info.. Catch and send via email to the Dev team


Thanks for all the inputs guys.. I clubbed your solutions into one that would solve my problem.. Here is what I made it to be.. Surely I did not compile the code, it is a half baked code.. but I will iron it soon once as I implement it in my code..

NSLog into file How to NSLog into a file LOG2FILE

#if TARGET_IPHONE_SIMULATOR == 0        NSArray *paths =      NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES);            NSString *documentsDirectory = [paths objectAtIndex:0];        NSString *logPath = [documentsDirectory stringByAppendingPathComponent:@"console.log"];        freopen([logPath cStringUsingEncoding:NSASCIIStringEncoding],"a+",stderr);#endif

Catch the Crash and Log them too into a File

First, create a function that will handle the error and output it to the console (as well as whatever else you want to do with it):

void uncaughtExceptionHandler(NSException *exception) {        NSLog(@"CRASH: %@", exception);          NSLog(@"Stack Trace: %@", [exception callStackSymbols]);        // Internal error reporting}

Next, add the exception handler to your app delegate:

-(BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:  (NSDictionary*)launchOptions{       NSSetUncaughtExceptionHandler(&uncaughtExceptionHandler);    // Normal launch stuff}

Set a variable in the info.plist called Crashed and then read/write it this way

- (void)readPlist {      NSString *localizedPath = [[NSBundle mainBundle] pathForResource:fileName ofType:@"plist"];              NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:localizedPath];    NSString *crashed;    crashed = [plistDict objectForKey:@"Crashed"];}- (void)writeToPlist{    NSMutableDictionary* plistDict = [[NSMutableDictionary alloc] initWithContentsOfFile:filePath];    [plistDict setValue:@"YES" forKey:@"Crashed"];    [plistDict writeToFile:filePath atomically: YES];}

Once the app launches read the info.plist and prompt the user to submit the crash logs..

{    MFMailComposeViewController *mailComposer = [[MFMailComposeViewController alloc] init];    mailComposer.mailComposeDelegate = self;[mailComposer setSubject:@"Crash Log"];    // Set up recipients    NSArray *toRecipients = [NSArray arrayWithObject:@"first@example.com"];     [mailComposer setToRecipients:toRecipients];    // Attach the Crash Log..    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);    NSString *documentsDirectory = [paths objectAtIndex:0];    NSString *logPath = [documentsDirectory stringByAppendingPathComponent:@"console.log"];    NSData *myData = [NSData dataWithContentsOfFile:logPath];    [mailComposer addAttachmentData:myData mimeType:@"Text/XML" fileName:@"Console.log"];    // Fill out the email body text    NSString *emailBody = @"Crash Log";    [mailComposer setMessageBody:emailBody isHTML:NO];    [self presentModalViewController:mailComposer animated:YES];}


  1. For logging your own data, use Cocoalumberjack. It is much faster than NSLog and can be turned on/off dynamically. It also provides options to save the data into a file. NSLog will slow down your app and fills the console log. Also you don't want to log too much in general. You cannot safely do logging when the crash happens. So rather once you figured out where the problem area is, add some more logging there and try to reproduce it, e.g. by using automated testing frameworks like KIF.

  2. For catching crash report you should nothing else than a solution based on the open source framework PLCrashReporter, which can safely catch crashes, also when you app is already in the app store! Exception catching as suggested by others is not recommended, check this article to see why!

    iTunes Connect offers you to view some crash reports too, but it takes up to 2 weeks to see some, but by far not all as e.g. pointed out by the Camera+ developers. So you better use your own solution.

    PLCrashReporter will send you standard apple formatted crash reports, ready for symbolication, so you know where the crash happens in your code, including line numbers.

    Some solutions based on PLCrashReporter are:

    • QuincyKit: Open Source client + php server, basic crash grouping, symbolication can be automated from your mac (I am the developer of this)
    • HockeyApp: Paid service, uses QuincyKit client, advanced crash grouping, symbolication fully done on the server (I am on of the developers of this)
    • Bugsense: Free service, no symbolication
    • AppBlade: FREE service if used with 25 devices or less, no symbolication
    • Crashlytics: Private beta, unknown features, their solution seems to be based on PLCrashReporter
  3. The proposed solutions either allow sending the data automatically on the next startup or by asking the user if he/she agrees to send.


For logging & analytics under Swift you can use SwiftyBeaver, it is a full-featured logging platform including open-source Swift 2 & Objective-C Framework, encrypted cloud storage and Mac App.

Website: https://swiftybeaver.com

Framework (supporting): https://github.com/SwiftyBeaver/SwiftyBeaver

Disclaimer: I am a founder.