No Description

Bogdan Poplauschi 8bd128d8d9 Added a StarUML diagram, exported as an image + into the Readme (set Github to skip diff for mdj files since they are very long text files) 9 years ago
.github ba21ec4859 Added CONTRIBUTING, ISSUE and PULL_REQUEST TEMPLATE and added a small Communication section to the Readme 9 years ago
Benchmarking b3307f8d24 Remove execute permission on non-executable files 11 years ago
Classes a9f54c957a Per #725, added the unit (bytes) of `maximumFileSize` to the docs. 10 years ago
Demos 637dfc1d45 Addopted CocoaPods 1.0.0 because the builds were no longer working. Updated the .travis.yml script so that we use xcodebuild pipped with xcpretty instead of xctool (it's faster and more reliable). Since the new pod setup has a huge output, redirected that to /dev/null 9 years ago
Documentation 8bd128d8d9 Added a StarUML diagram, exported as an image + into the Readme (set Github to skip diff for mdj files since they are very long text files) 9 years ago
Framework 85aeff3515 Bumped the version from 2.2.0 to 2.3.0 10 years ago
Lumberjack.xcodeproj f602ecbd6a Add appletvos and appletvsimulator and TVOS_DEPLOYMENT_TARGET to project 10 years ago
Tests 637dfc1d45 Addopted CocoaPods 1.0.0 because the builds were no longer working. Updated the .travis.yml script so that we use xcodebuild pipped with xcpretty instead of xctool (it's faster and more reliable). Since the new pod setup has a huge output, redirected that to /dev/null 9 years ago
.gitattributes 8bd128d8d9 Added a StarUML diagram, exported as an image + into the Readme (set Github to skip diff for mdj files since they are very long text files) 9 years ago
.gitignore 55c10a68a3 Ignore .DS_Store files. 11 years ago
.travis.yml 70439fe166 Fixed a small issue with the echo command that needs escaping for ( and ) 9 years ago
CHANGELOG.md 8c8d1553c7 Updated CHANGELOG 10 years ago
CocoaLumberjack.podspec 0f5a793843 This one fixes the build (public_header_files: The pattern includes header files that are not listedin source_files) and (module.modulemap:13:10: error: header 'DDContextFilterLogFormatter.h' not found). 9 years ago
LICENSE.txt a837c8890e Update license year 10 years ago
LumberjackLogo.png 1b2e683576 Proposal for Lumberjack logo 12 years ago
README.md 8bd128d8d9 Added a StarUML diagram, exported as an image + into the Readme (set Github to skip diff for mdj files since they are very long text files) 9 years ago
uncrustify.cfg 0f938f5b07 Formatted code using Uncrustify (via the BBUncrustifyXcodePlugin). 11 years ago

README.md

CocoaLumberjack

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

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

How to get started

Swift version via CocoaPods
platform :ios, '8.0'
pod 'CocoaLumberjack/Swift'
use_frameworks!

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:

import CocoaLumberjack
DDLog.addLogger(DDTTYLogger.sharedInstance()) // TTY = Xcode console
DDLog.addLogger(DDASLLogger.sharedInstance()) // ASL = Apple System Logs

let fileLogger: DDFileLogger = DDFileLogger() // File Logger
fileLogger.rollingFrequency = 60*60*24  // 24 hours
fileLogger.logFileManager.maximumNumberOfLogFiles = 7
DDLog.addLogger(fileLogger)

...

DDLogVerbose("Verbose");
DDLogDebug("Debug");
DDLogInfo("Info");
DDLogWarn("Warn");
DDLogError("Error");
Obj-C version via CocoaPods
platform :ios, '7.0'
pod 'CocoaLumberjack'
Obj-C usage

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

Otherwise, #import <CocoaLumberjack/CocoaLumberjack.h>

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

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

...

DDLogVerbose(@"Verbose");
DDLogDebug(@"Debug");
DDLogInfo(@"Info");
DDLogWarn(@"Warn");
DDLogError(@"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

github "CocoaLumberjack/CocoaLumberjack"

CocoaLumberjack 2

Migrating to 2.x

  • Replace DDLog.h imports by #import <CocoaLumberjack/CocoaLumberjack.h>.

Advanced users, third party libraries:

  • Replace all DDLogC macros for regular DDLog macros.
  • Replace log level (LOG_LEVEL_*) macros with DDLogLevel enum values
  • Replace log flag (LOG_FLAG_*) macros with DDLogFlag enum values
  • Replace DDLogMessage ivars and method calls to the new ivars and methods
    • logMsg with _message
    • logLevel with _level
    • logFlag with _flag
    • logContext with _context
    • lineNumber with _line (type changed from int to NSUInteger)
    • file with _file (filename contains just the file name, without the extension and the full path)
    • timestamp with _timestamp
    • methodName with function
  • Replace DDAbstractLogger formatter to logFormatter
  • YSSingleFileLogger ivars are no longer accesible, use the methods instead
  • Replace [DDLog addLogger:withLogLevel:] with [DDLog addLogger:withLevel:]

Forcing 1.x

If an included library requires it, you can force CocoaLumberjack 1.x by setting the version before the conflicting library:

pod 'CocoaLumberjack', '~> 1.9'
pod 'ConflictingLibrary'

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:

  • You're looking for a way to track down that impossible-to-reproduce bug that keeps popping up in the field.
  • You're frustrated with the super short console log on the iPhone.
  • You're looking to take your application to the next level in terms of support and stability.
  • You're looking for an enterprise level logging solution for your application (Mac or iPhone).

Documentation

Requirements

The current version of Lumberjack requires:

  • Xcode 7.3 or later
  • iOS 5 or later
  • OS X 10.7 or later
  • WatchOS 2 or later
  • TVOS 9 or later

Backwards compability

  • for Xcode 7.2 and 7.1, use the 2.2.0 version
  • for Xcode 7.0 or earlier, use the 2.1.0 version
  • for Xcode 6 or earlier, use the 2.0.x version
  • for OS X < 10.7 support, use the 1.6.0 version

Communication

  • If you need help, use Stack Overflow. (Tag 'lumberjack')
  • If you'd like to ask a general question, use Stack Overflow.
  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Author

  • Robbie Hanson
  • Love the project? Wanna buy me a coffee? (or a beer :D) donation

Collaborators

License

  • CocoaLumberjack is available under the BSD license. See the LICENSE file.

Architecture