iOS APP日志写入文件(日志收集)
生活随笔
收集整理的這篇文章主要介紹了
iOS APP日志写入文件(日志收集)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOption//日志收集(日志會被攔截,開發的時候注掉)[self redirectNSlogToDocumentFolder];
作者:Kevin丶
鏈接:http://www.jianshu.com/p/f60a2c761c3e
來源:簡書
著作權歸作者所有。商業轉載請聯系作者獲得授權,非商業轉載請注明出處。
方法實現
#pragma mark - 日志收集 - (void)redirectNSlogToDocumentFolder {NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];NSDateFormatter *dateformat = [[NSDateFormatter alloc]init];[dateformat setDateFormat:@"yyyy-MM-dd-HH-mm-ss"];NSString *fileName = [NSString stringWithFormat:@"LOG-%@.txt",[dateformat stringFromDate:[NSDate date]]];NSString *logFilePath = [documentDirectory stringByAppendingPathComponent:fileName];// 先刪除已經存在的文件NSFileManager *defaultManager = [NSFileManager defaultManager];[defaultManager removeItemAtPath:logFilePath error:nil];// 將log輸入到文件freopen([logFilePath cStringUsingEncoding:NSASCIIStringEncoding], "a+", stdout);freopen([logFilePath cStringUsingEncoding:NSASCIIStringEncoding], "a+", stderr); }在需要進行收集的時候將文件上傳到服務器
作者:Kevin丶
鏈接:http://www.jianshu.com/p/f60a2c761c3e
來源:簡書
著作權歸作者所有。商業轉載請聯系作者獲得授權,非商業轉載請注明出處。
轉載于:https://www.cnblogs.com/Hakim/p/7852562.html
總結
以上是生活随笔為你收集整理的iOS APP日志写入文件(日志收集)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 0.11内核rd_load@ramdis
- 下一篇: 领域模型与微服务