Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.12 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.12 KB

Bugfender logger for CocoaLumberjack

This project provides a DDLogger implementation for using Bugfender in conjunction with CocoaLumberjack.

Usage

Swift

  • Follow the Bugfender SDK installation instructions on the Bugfender website
  • Copy DDBugfenderLogger.swift to your project
  • Add the logger to CocoaLumberjack with:
DDLog.add(DDBugfenderLogger.shared)

Objective-C

  • Follow the Bugfender SDK installation instructions on the Bugfender website
  • Copy DDBugfenderLogger.h and DDBugfenderLogger.m files from this repository to your project
  • Add the logger to CocoaLumberjack with:
[DDLog addLogger:[DDBugfenderLogger sharedInstance]];

Advanced configuration

If you want to send to Bugfender exclusively the logs processed with CocoaLumberjack, you may want to disable some of the automated loggers.

For more information, see How do I specify the logs I want to send with Bugfender SDK?