这是一个简单的库,它提供了一个简单的片段,允许用户将调试日志投放到在线 pastebin(目前为gist),由 CocoaLumberjack 支持。
PasteLogKit 非常容易使用。将 PastelogKit.h
导入到您的源文件中。
typedef void (^successBlock)(NSError *error, NSString *urlString);
[Pastelog submitLogsWithCompletion:^(NSError *error, *urlString){
if(error){
// Process the error;
} else{
// email, copy or do something with the gist url
}
}];
如果需要使用特定的日志记录器,
+(void)submitLogsWithCompletion:(successBlock)block forFileLogger:(DDFileLogger*)fileLogger;
在您的 Podfile 中
pod 'PastelogKit', '~> 1.0'
在 GPLv3 许可下授权:http://www.gnu.org/licenses/gpl-3.0.html