A log message formatter for CocoaLumberjack.
The KFLogFormatter class provides a log formatter for the CocoaLunmberjack
logging framework. It formats messages in the form:
LOG_LEVEL DATE, TIME -[CLASSNAME METHOD][Line LINE_NUMBER] LOG_MESSAGE
To run the example project; clone the repo, and run pod install
from the Project directory first.
The Formatter can be included into your project by importing the header:
#import <KFLogFormatter/KFLogFormatter.h>
defining ddLogLevel:
static const int ddLogLevel = LOG_LEVEL_VERBOSE;
and setting it as log formatter:
[DDLog addLogger:[DDTTYLogger sharedInstance]];
[[DDTTYLogger sharedInstance] setLogFormatter:[KFLogFormatter new]];
CocoaLumberjack 1.6
KFLogFormatter is available through CocoaPods, to install it simply add the following line to your Podfile:
pod "KFLogFormatter"
Gunnar Herzog, gunnar.herzog@kf-interactive.com
KFLogFormatter is available under the MIT license. See the LICENSE file for more info.