====================
MWLogging - simple wrapper macros around the ASL (Apple System Log).
This repository is forked from https://github.com/MikeWeller/MWLogging.
For more information see the blog post:
http://doing-it-wrong.mikeweller.com/2012/07/youre-doing-it-wrong-1-nslogdebug-ios.html
- Log statements with different log levels.
- Debug log levels will be wiped out from release builds so as to prevent revealing of sensitive information about the app or user.
pod “MWLogging”
#import <MWLogging.h>
MWLogError(@"This is an error");
MWLogDebug(@"This is a debug statement");
MWLogWarning(@"This is a warning");
MWLogging supports minimum iOS 7 . Supports both iPhone and iPad.
MWLogging is released under the MIT license. See LICENSE for details.