SuperLogger 0.9.3

SuperLogger 0.9.3

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2016

Maintained by Yourtion Guo.




  • By
  • Yourtion

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];

ScreenShot

ScreenShot1

ScreenShot1

ScreenShot1