一个文档式日志格式化工具,适用于CocoaLumberjack
创建Flannel中的日志记录器实例之一(截至1.0.1版,只有FLAVerboseLogFormatter
),并将其设置为您的日志记录器的日志格式化器。
FLAVerboseLogFormatter *formatter = [[FLAVerboseLogFormatter alloc] init];
[[DDASLLogger sharedInstance] setLogFormatter:formatter];
[[DDTTYLogger sharedInstance] setLogFormatter:formatter];
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
DDLogInfo(@"Application is launching.");
return YES;
}
2014-03-25 13:28:07:263 AppDelegate (application:didFinishLaunchingWithOptions:)[Info]: Application is launching.
Todd Grooms,[email protected]
Flannel可在MIT许可证下使用。有关更多信息,请参阅LICENSE文件。