All Projects → yourtion → Superlogger

yourtion / Superlogger

Licence: mit
Save NSLog() to file and send email to developer

Labels

Projects that are alternatives of or similar to Superlogger

Log
Structured logging package for Go.
Stars: ✭ 1,094 (+1076.34%)
Mutual labels:  logger
Android Filelogger
A general-purpose logging library with built-in support to save logs to file efficiently.
Stars: ✭ 70 (-24.73%)
Mutual labels:  logger
Coolog
A expandable and flexible log framework for iOS. iOS一个灵活、可扩展的日志组件。
Stars: ✭ 82 (-11.83%)
Mutual labels:  logger
Yii2 Psr Log Target
Yii 2.0 log target that is able to write messages to PSR-3 compatible logger
Stars: ✭ 58 (-37.63%)
Mutual labels:  logger
Signale
Highly configurable logging utility
Stars: ✭ 8,575 (+9120.43%)
Mutual labels:  logger
Logtofile
Android一个简单实用把Log日志打印到手机本地文件,可以自行取出来上传到服务器开源代码
Stars: ✭ 74 (-20.43%)
Mutual labels:  logger
Ios Sdk
AppSpector is a debugging service for mobile apps
Stars: ✭ 56 (-39.78%)
Mutual labels:  logger
Rain
Visualize vertical data inside your terminal 💦
Stars: ✭ 84 (-9.68%)
Mutual labels:  logger
Logger logstash backend
Logstash backend for the Elixir Logger
Stars: ✭ 67 (-27.96%)
Mutual labels:  logger
Laravel Console Logger
Logging and Notifications for Laravel Console Commands.
Stars: ✭ 79 (-15.05%)
Mutual labels:  logger
Bulk
👨‍💻 Bulk is a library for buffering the objects. Pipeline(Sink) receives the object and emits the object bulked.
Stars: ✭ 59 (-36.56%)
Mutual labels:  logger
Ticket Analysis
移动端的彩票开奖查询系统
Stars: ✭ 61 (-34.41%)
Mutual labels:  logger
Loguru
Python logging made (stupidly) simple
Stars: ✭ 10,510 (+11201.08%)
Mutual labels:  logger
Logger
Simple logger with stores inspector
Stars: ✭ 58 (-37.63%)
Mutual labels:  logger
Axios Logger
Beautify Axios Logging Messages
Stars: ✭ 83 (-10.75%)
Mutual labels:  logger
Heroku Logger
A dead simple logger, designed to be perfect for Heroku apps.
Stars: ✭ 57 (-38.71%)
Mutual labels:  logger
Awesome Canbus
🚛 A curated list of awesome CAN bus tools, hardware and resources
Stars: ✭ 73 (-21.51%)
Mutual labels:  logger
React Native Logs
Performance-aware simple logger for React-Native with namespaces, custom levels and custom transports (colored console, file writing, etc.)
Stars: ✭ 84 (-9.68%)
Mutual labels:  logger
Project
⭐️ Antares Project Application Skeleton. This is the very first place you should start. It allows you to create a brand new awesome project in easy few steps.
Stars: ✭ 84 (-9.68%)
Mutual labels:  logger
Kotlin Inline Logger
A logger facilitating lazily-evaluated log calls via Kotlin's inline classes & functions.
Stars: ✭ 77 (-17.2%)
Mutual labels:  logger

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 = @[@"[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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].