Tidak Ada Deskripsi

Koichi Yokota ffac44ea8f Merge pull request #1052 from sushichop/PR/bump-3p5p2 7 tahun lalu
.github 268e4cc98e Mention `bt all` in isssue template. 7 tahun lalu
.idea b6550ad7fc Rename dictionary. 7 tahun lalu
Benchmarking d68cb7c754 Merge pull request #1014 from CocoaLumberjack/feature/spelling 7 tahun lalu
Classes aedea59ba4 core: loggers os logger shared instance caching has been removed. 7 tahun lalu
Configs 97017f0d71 Address review. 7 tahun lalu
Demos 90c06b75b0 Update demo about CustomLogLevels 7 tahun lalu
Documentation ad410cb8ee Merge pull request #1019 from CocoaLumberjack/feature/maybe_async 7 tahun lalu
Framework 627939d22d Bump version to 3.5.2 7 tahun lalu
Integration 40c749c573 Make IDETemplateMacros use current year 7 tahun lalu
Lumberjack.xcodeproj 40c749c573 Make IDETemplateMacros use current year 7 tahun lalu
Scripts 70bdf798b6 Use functions for retrieving years 7 tahun lalu
Tests 7f7e8ae036 Add asserts for not being on the synced queues 7 tahun lalu
.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 tahun lalu
.gitignore 6857323cca Add Carthage/Build to .gitignore to avoid dirty submodules when installing with Carthage 9 tahun lalu
.swiftlint.yml c009d7e274 Added Danger integration using their wizard (bundle exec danger init): 7 tahun lalu
.travis.yml 47dafdef99 Space. 7 tahun lalu
CHANGELOG.md abd2654576 Add missed CHANGELOG 7 tahun lalu
CocoaLumberjack.podspec 627939d22d Bump version to 3.5.2 7 tahun lalu
Dangerfile 5d5f382f12 Merge pull request #1029 from CocoaLumberjack/fix_typo 7 tahun lalu
Gemfile c009d7e274 Added Danger integration using their wizard (bundle exec danger init): 7 tahun lalu
Gemfile.lock 29d70eba8c Downgrade bundler version in Gemfile.lock 7 tahun lalu
LICENSE 0aecc94127 Update Copyright to 2019. Fixes #1030 7 tahun lalu
LumberjackLogo.png 1b2e683576 Proposal for Lumberjack logo 12 tahun lalu
README.md aeca2a6648 Update README.md 7 tahun lalu
uncrustify.cfg 0f938f5b07 Formatted code using Uncrustify (via the BBUncrustifyXcodePlugin). 11 tahun lalu

README.md

CocoaLumberjack

Build Status Pod Version Carthage compatible Pod Platform Pod License codecov codebeat badge

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

How to get started

  • install via CocoaPods
  • use DDOSLogger for iOS 10 and later, DDTTYLogger and DDASLLogger for earlier versions.
Swift version via CocoaPods
platform :ios, '8.0'

# You need to set target when you use CocoaPods 1.0.0 or later.
target 'SampleTarget' do
  use_frameworks!
  pod 'CocoaLumberjack/Swift'
end

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 CocoaLumberjackSwift
DDLog.add(DDOSLogger.sharedInstance) // Uses os_log

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

...

DDLogVerbose("Verbose")
DDLogDebug("Debug")
DDLogInfo("Info")
DDLogWarn("Warn")
DDLogError("Error")
Obj-C version via CocoaPods
platform :ios, '8.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:[DDOSLogger sharedInstance]]; // Uses os_log

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 3

Migrating to 3.x

  • To be determined

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 10 or later
  • Swift 4.2 or later
  • iOS 8 or later
  • OS X 10.10 or later
  • WatchOS 3 or later
  • TVOS 9 or later

Backwards compatibility

  • for iOS 6, iOS 7, OS X 10.8, OS 10.9 and Xcode 9, use the 3.4.2 version
  • for iOS 5 and OS X 10.7, use the 3.3 version
  • for Xcode 8 and Swift 3, use the 3.2 version
  • for Xcode 7.3 and Swift 2.3, use the 2.4.0 version
  • for Xcode 7.3 and Swift 2.2, use the 2.3.0 version
  • 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 3 license. See the LICENSE file.

Extensions

Architecture