我注意到我的NSLog(并且我也使用os_log进行了尝试)语句在控制台应用程序中的显示不一致。
以下是我的应用启动时运行的代码。
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
NSLog("xyz didFinishLaunchingWithOptions")
FirebaseApp.configure()
NSLog("xyz FirebaseApp.configure() done")
let db = FirestoreDelegate.db()
let now = Date()
NSLog("xyz about to write")
db.collection("atest").document(DateUtils.formatTimestampGMT(now)).setData(["ts": now, "note":"delegate startup"]) {
err in
if let err = err {
NSLog ("xyz error ats \(err)")
return
}
NSLog("xyz wrote to ats \(DateUtils.formatTimestampGMT(now))")
}
NSLog("xyz after write")
... extraneous code removed
}
当我运行时,有时会看到“ xyz didFinishLaunchingWithOptions”和“写给ats”,但是没有其他日志语句。有时我看到了它们的全部,但是这并不一致。他们会以某种方式被过滤或优化吗?
我不是通过xcode进行调试,我只是在手机上运行应用程序,并通过计算机上的控制台应用程序查看日志。
答案 0 :(得分:1)
我不知道为什么记录不一致。相反,我创建了一个写入文件的自定义记录器。
public class FileWriter {
static func getTs() -> String {
let timestampFormat = DateFormatter()
timestampFormat.dateFormat = "yyyy-MM-dd'T'HH:mm:ss"
return timestampFormat.string(from: Date())
}
static func write(_ text: String) {
do {
let dir: URL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).last! as URL
let url = dir.appendingPathComponent("log.txt")
if !FileManager.default.fileExists(atPath: url.path) {
FileManager.default.createFile(atPath: url.path, contents: nil, attributes: nil)
}
let fileHandle = try FileHandle(forWritingTo: url)
let line = "\(getTs()) \(text)\n"
let data = line.data(using: String.Encoding.utf8)!
fileHandle.seekToEndOfFile()
fileHandle.write(data)
fileHandle.closeFile()
} catch let error as NSError {
print ("error \(error)")
}
}
}
要读取文件,我在Info.plist“ UIFileSharingEnabled”中添加了以下键 ,“ LSSupportsOpeningDocumentsInPlace”,然后我可以使用“文件”应用在手机上打开文件。