wireapp/CocoaLumberjack

Name: CocoaLumberjack

Owner: Wire Swiss GmbH

Description: A fast & simple, yet powerful & flexible logging framework for Mac and iOS

Forked from: wearezeta/CocoaLumberjack

Created: 2016-07-14 14:35:37.0

Updated: 2017-10-19 08:35:15.0

Pushed: 2017-10-06 12:54:50.0

Homepage:

Size: 3694

Language: Objective-C

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

CocoaLumberjack

Build Status Pod Version Carthage compatible Pod Platform Pod License Reference Status codecov

CocoaLumberjack is a fast & simple, yet powerful & flexible logging framework for Mac and iOS.

How to get started
Swift version via CocoaPods
form :ios, '8.0'

u need to set target when you use CocoaPods 1.0.0 or later.
et 'SampleTarget' do 
e_frameworks!
d 'CocoaLumberjack/Swift'

Note: Swift is a subspec which will include all the Obj-C code plus the Swift one, so this is sufficient. For more details about how to use Swift with Lumberjack, see this conversation.

Swift Usage

If you installed using CocoaPods or manually:

rt CocoaLumberjack
wift
g.add(DDTTYLogger.sharedInstance) // TTY = Xcode console
g.add(DDASLLogger.sharedInstance) // ASL = Apple System Logs

fileLogger: DDFileLogger = DDFileLogger() // File Logger
Logger.rollingFrequency = TimeInterval(60*60*24)  // 24 hours
Logger.logFileManager.maximumNumberOfLogFiles = 7
g.add(fileLogger)



gVerbose("Verbose");
gDebug("Debug");
gInfo("Info");
gWarn("Warn");
gError("Error");
Obj-C version via CocoaPods
form :ios, '7.0'
'CocoaLumberjack'
Obj-C usage

If you're using Lumberjack as a framework, you can @import CocoaLumberjack.

Otherwise, #import <CocoaLumberjack/CocoaLumberjack.h>

og addLogger:[DDTTYLogger sharedInstance]]; // TTY = Xcode console
og addLogger:[DDASLLogger sharedInstance]]; // ASL = Apple System Logs

leLogger *fileLogger = [[DDFileLogger alloc] init]; // File Logger
Logger.rollingFrequency = 60 * 60 * 24; // 24 hour rolling
Logger.logFileManager.maximumNumberOfLogFiles = 7;
og addLogger:fileLogger];



gVerbose(@"Verbose");
gDebug(@"Debug");
gInfo(@"Info");
gWarn(@"Warn");
gError(@"Error");
Installation with Carthage (iOS 8+)

Carthage is a lightweight dependency manager for Swift and Objective-C. It leverages CocoaTouch modules and is less invasive than CocoaPods.

To install with Carthage, follow the instruction on Carthage

Cartfile

ub "CocoaLumberjack/CocoaLumberjack"
CocoaLumberjack 3
Migrating to 3.x
Features
Lumberjack is Fast & Simple, yet Powerful & Flexible.

It is similar in concept to other popular logging frameworks such as log4j, yet is designed specifically for Objective-C, and takes advantage of features such as multi-threading, grand central dispatch (if available), lockless atomic operations, and the dynamic nature of the Objective-C runtime.

Lumberjack is Fast

In most cases it is an order of magnitude faster than NSLog.

Lumberjack is Simple

It takes as little as a single line of code to configure lumberjack when your application launches. Then simply replace your NSLog statements with DDLog statements and that's about it. (And the DDLog macros have the exact same format and syntax as NSLog, so it's super easy.)

Lumberjack is Powerful:

One log statement can be sent to multiple loggers, meaning you can log to a file and the console simultaneously. Want more? Create your own loggers (it's easy) and send your log statements over the network. Or to a database or distributed file system. The sky is the limit.

Lumberjack is Flexible:

Configure your logging however you want. Change log levels per file (perfect for debugging). Change log levels per logger (verbose console, but concise log file). Change log levels per xcode configuration (verbose debug, but concise release). Have your log statements compiled out of the release build. Customize the number of log levels for your application. Add your own fine-grained logging. Dynamically change log levels during runtime. Choose how & when you want your log files to be rolled. Upload your log files to a central server. Compress archived log files to save disk space…

This framework is for you if:
Documentation
Requirements

The current version of Lumberjack requires:

Backwards compability
Communication
Author
Collaborators
License
Architecture


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.