我已经像这样配置了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)
在我的应用中,我想要拥有以下日志系统:
我的应用程序的入口点是Login View Controller。我想在这里写日志条目,这样我就可以看到一切都好了。如果用户正确登录,我想滚动/存档该日志并为该用户创建一个新日志。在这个新日志中,我将保留用户会话期间发生的错误。如果用户注销,我想再次滚动/存档日志并创建一个新日志。在滚动/存档日志之前,我总是将其发送到我的服务器,因此我可以将其从设备中删除。
我尝试以下操作来滚动/存档日志,但我没有成功:
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)")
})
打印,滚动功能和滚动功能之后,打印相同的路径和文件名。所以我没有创建新的日志文件。
我该如何创建它?
答案 0 :(得分:0)
问题是您是使用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)")
})