The Wayback Machine - https://web.archive.org/web/20201212133416/https://github.com/ymonke/SuperLogger
Skip to content
master
Go to file
Code
This branch is 8 commits behind yourtion:master.

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

README.md

SuperLogger

Carthage compatible Version License Platform Build Status

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 = @[@"yourtion@gmail.com"];

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

About

Save NSLog() to file and send email to developer

Resources

License

Packages

No packages published
You can’t perform that action at this time.