https://github.com/eaceto/silversparrow-sslogger
Logger library part of my Silver Sparrow framework. Silver Sparrow is a (private) iOS framework that includes several components that enhanced and simplify iOS software development
https://github.com/eaceto/silversparrow-sslogger
Last synced: 9 months ago
JSON representation
Logger library part of my Silver Sparrow framework. Silver Sparrow is a (private) iOS framework that includes several components that enhanced and simplify iOS software development
- Host: GitHub
- URL: https://github.com/eaceto/silversparrow-sslogger
- Owner: eaceto
- Created: 2012-08-20T15:33:09.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-08-20T19:27:42.000Z (almost 14 years ago)
- Last Synced: 2025-03-29T07:52:08.270Z (about 1 year ago)
- Language: Objective-C
- Size: 109 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Silver Sparrow's Logger
Logger library part of my Silver Sparrow framework. Silver Sparrow is a (private) iOS framework that includes several components that enhanced and simplify iOS software development.
## How To
1. Add SSLogger to your workspace
2. Add the framework (libSSLogger.a) to your target's "Build Phases" -> "Link Binary with Libraries"
3. Add "-DSSLogEnabled" flag to your target's "Build Settings" -> "Other C Flags". This will enable the log. Remove this flag in order to turn the log off.
4. Import to all header files where you are going to use the logger
* In order to log with the Information tag
SSLog_Info(@"information");
* In order to log with the Error tag
SSLog_Error(@"error");
* In order to log with the Warning tag
SSLog_Warn(@"warning");
## Important
You can download, use and redistribute this framework. Just keep the copyright information in SSLog.h
Thanks!