LogKit

2018-10-16  本文已影响260人  WhatHurtsMore

LogKit

Log framework based on CocoaLumberjack and ZipArchive

Features

Preview

assistiveButton debugView logMail XcodeConsole
en_1.png en_2.png xcode_console.png

Usage

    DLogTrace();            // ouput current function
    
    DLogVerbose(@"");       // ouput verbose level log message
    
    DLogDebug(@"");     //  ouput debug level log message
    
    DLogInfo(@"");      //  ouput info level log message
    
    DLogWarn(@"");      //  ouput warn level log message
    
    DLogError(@"");     //  ouput error level log message

Configuration

Configuration Settings in project's AppDelegate.m

 // #import 'LogKit.h' 
 // #import <LogKit.h>
 
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    [LogKit addTTYLogger];      // Configure and add a DDTTYLogger (Apple System Log and Xcode console)
    
    [LogKit addFileLogger];     // Send the log to the file (default for non debug builds),requied this method if you want send log files to mail
    
#ifdef DEBUG
    [LogKit addDashboardLogger];        //  Configure and add a recorder with console logs
#endif
    
    [LogKit setDefaultMailAddress:@[@"testMailAddress@gmail.com"]];     // Sets the mailbox collection that receives log files (default is empty)
    
    [LogKit setDefaultLogPassword:@"101001"];       // Set the password for the log file (default is empty)
    
    return YES;
}

Installation

source 'https://github.com/CocoaPods/Specs.git'

pod 'CocoaLogKit'
// pod 'CocoaLumberjack'
// pod 'SSZipArchive'

License

LogKituse MIT license

上一篇 下一篇

猜你喜欢

热点阅读