當(dāng)前位置:
首頁 >
iOS APP日志写入文件(日志收集)
發(fā)布時(shí)間:2025/7/14
38
豆豆
生活随笔
收集整理的這篇文章主要介紹了
iOS APP日志写入文件(日志收集)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOption//日志收集(日志會(huì)被攔截,開發(fā)的時(shí)候注掉)[self redirectNSlogToDocumentFolder];
作者:Kevin丶
鏈接:http://www.jianshu.com/p/f60a2c761c3e
來源:簡書
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán),非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
方法實(shí)現(xiàn)
#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];// 先刪除已經(jīng)存在的文件NSFileManager *defaultManager = [NSFileManager defaultManager];[defaultManager removeItemAtPath:logFilePath error:nil];// 將log輸入到文件freopen([logFilePath cStringUsingEncoding:NSASCIIStringEncoding], "a+", stdout);freopen([logFilePath cStringUsingEncoding:NSASCIIStringEncoding], "a+", stderr); }在需要進(jìn)行收集的時(shí)候?qū)⑽募蟼鞯椒?wù)器
作者:Kevin丶
鏈接:http://www.jianshu.com/p/f60a2c761c3e
來源:簡書
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán),非商業(yè)轉(zhuǎn)載請(qǐng)注明出處。
轉(zhuǎn)載于:https://www.cnblogs.com/Hakim/p/7852562.html
總結(jié)
以上是生活随笔為你收集整理的iOS APP日志写入文件(日志收集)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 0.11内核rd_load@ramdis
- 下一篇: 领域模型与微服务