Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bugfender/bugfendersdk-cocoalumberjack
CocoaLumberjack logger for sending logs to Bugfender
https://github.com/bugfender/bugfendersdk-cocoalumberjack
Last synced: 2 days ago
JSON representation
CocoaLumberjack logger for sending logs to Bugfender
- Host: GitHub
- URL: https://github.com/bugfender/bugfendersdk-cocoalumberjack
- Owner: bugfender
- Created: 2016-09-13T11:43:09.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-17T09:17:18.000Z (almost 3 years ago)
- Last Synced: 2024-03-27T12:55:06.204Z (8 months ago)
- Language: Objective-C
- Size: 5.86 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bugfender logger for CocoaLumberjack
This project provides a `DDLogger` implementation for using Bugfender in conjunction with [CocoaLumberjack](https://github.com/CocoaLumberjack/CocoaLumberjack).
## Usage
### Swift
* Follow the Bugfender SDK installation instructions on the [Bugfender website](https://bugfender.com/)
* 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](https://bugfender.com/)
* 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?](http://support.bugfender.com/getting-started/how-do-i-specify-the-logs-i-want-to-send-with-bugfender-sdk)