gpt4 book ai didi

ios - 使用 CocoaLumberjack 手动创建新日志文件

转载 作者:行者123 更新时间:2023-11-30 11:38:07 24 4
gpt4 key购买 nike

我已经像这样配置 CocoaLumberjack:

// CocoaLumberjack
DDLog.add(DDASLLogger.sharedInstance, with: DDLogLevel.debug)
DDLog.add(DDTTYLogger.sharedInstance, with: DDLogLevel.debug)
DDTTYLogger.sharedInstance.colorsEnabled = true
fileLogger = DDFileLogger.init()
fileLogger?.doNotReuseLogFiles = true // Always create a new log file when apps starts
fileLogger?.rollingFrequency = 86400 // 24 Hours
fileLogger?.maximumFileSize = 0 // Force log to only roll after 24 hours
fileLogger?.logFileManager.maximumNumberOfLogFiles = 1 // Keeps 1 log file plus active log file
DDLog.add(fileLogger!, with: DDLogLevel.debug)

在我的应用程序中,我希望拥有以下日志系统:

我的应用程序的入口点是登录 View Controller 。我想在这里写入日志条目,以便我可以查看一切是否正常。如果用户登录正确,我想滚动/存档该日志并为该用户创建一个新日志。在这个新日志中,我将保留用户 session 期间发生的错误。如果用户注销,我想再次滚动/存档日志并创建一个新日志。在滚动/归档日志之前,我总是将其发送到我的服务器,以便我可以将其从设备中删除。

我正在尝试以下操作来滚动/存档日志,但没有成功:

Server().sendUserLog(filePath: DDFileLogger().currentLogFileInfo.filePath, onSuccess: { // This function send the log to the server, if all goes good, I want to roll it. 
print(">>>>>>>>>>>>>>>>>>>>> \(DDFileLogger().currentLogFileInfo.filePath)")
DDFileLogger().rollLogFile(withCompletion: {
print("Log rolled")
print(">>>>>>>>>>>>>>>>>>>>> \(DDFileLogger().currentLogFileInfo.filePath)")
})
}, onError: { (error) in
DDLogError("LoginVC - sendUserLog Error: \(error)")
})

无论是前卷功能还是后卷功能,都打印相同的路径和文件名。所以我不会创建新的日志文件。

如何创建它?

最佳答案

问题是您正在使用 DDFileLogger() 创建一个新的 DDFileLogger。您应该将 fileLogger 存储在某处,并在同一实例上调用 rollLogFile。像这样的事情:

let fileLogger = DDFileLogger()
Server().sendUserLog(
filePath: fileLogger.currentLogFileInfo.filePath,
onSuccess: { // This function send the log to the server, if all goes good, I want to roll it.
print(">>>>>>>>>>>>>>>>>>>>> \(fileLogger.currentLogFileInfo.filePath)")
fileLogger.rollLogFile(withCompletion: {
print("Log rolled")
print(">>>>>>>>>>>>>>>>>>>>> \(fileLogger.currentLogFileInfo.filePath)")
})
},
onError: { (error) in
DDLogError("LoginVC - sendUserLog Error: \(error)")
})

关于ios - 使用 CocoaLumberjack 手动创建新日志文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49527587/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com