SuperLogger
SuperLogger copied to clipboard
Save NSLog() to file and send email to developer
SuperLogger
Save NSLog() to file and send email to developer
Installation
The preferred way of installation is via CocoaPods. Just add
pod 'SuperLogger'
and run pod install. It will install the most recent version of SuperLogger.
How to use
Import the framework header on AppDelegate.m:
#import "SuperLogger.h"
Init and set email info:
SuperLogger *logger = [SuperLogger sharedInstance];
// Start NSLogToDocument
[logger redirectNSLogToDocumentFolder];
// Set Email info
logger.mailTitle = @"SuperLoggerDemo Logfile";
logger.mailContect = @"This is the SuperLoggerDemo Logfile";
logger.mailRecipients = @[@"[email protected]"];
That's it! Have fun with SuperLogger!
Show the Loglist by presentViewController "[[SuperLogger sharedInstance] getListView]"
[self presentViewController:[[SuperLogger sharedInstance] getListView] animated:YES completion:nil];