https://github.com/instabug/instabug-cocoalumberjack
https://github.com/instabug/instabug-cocoalumberjack
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/instabug/instabug-cocoalumberjack
- Owner: Instabug
- Created: 2017-02-01T13:15:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-10-28T10:58:02.000Z (over 4 years ago)
- Last Synced: 2024-04-28T16:43:53.805Z (about 1 year ago)
- Language: Objective-C
- Size: 4.88 KB
- Stars: 5
- Watchers: 47
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instabug-CocoaLumberjack
## Installation
Add pod `Instabug-CocoaLumberjack` to your `podfile`## Requirements
iOS version >= 8.0`Instabug` version >= 6.2
## Example
Make sure you import our destination first: `#import ````
[DDLog addLogger:[DDInstabugLogger sharedInstance]];DDLogVerbose(@"Verbose");
DDLogDebug(@"Debug");
DDLogInfo(@"Info");
DDLogWarn(@"Warn");
DDLogError(@"Error");
```