CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Feb 2016 |
Maintained by Michael Kuck.
A basic logger implementation for Objective-C
To run the example project, clone the repo, and run pod install from the Example directory first.
Configuration
void MKSetLogLevel(MKLogLevelNone|MKLogLevelError|MKLogLevelWarning|
MKLogLevelInfo|MKLogLevelDebug|MKLogLevelVerbose);
MKLogLevel MKGetCurrentLogLevel();
void MKSetUseTimestamps(true|false);
BOOL MKIsUsingTimestamps();Logging
void MKLogError(@"Error message %@", param1, ...);
void MKLogWarning(@"Warning message %@", param1, ...);
void MKLogInfo(@"Info message %@", param1, ...);
void MKLogDebug(@"Debug message %@", param1, ...);
void MKLogVerbose(@"Verbose message %@", param1, ...);MKLog is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "MKLog"Michael Kuck, [email protected]
MKLog is available under the MIT license. See the LICENSE file for more info.