首先,我们去搜索一下 Apple 关于 NSLog 的文档。我们会发现 NSLog 方法中调用的是 NSLogv 方法。Apple 文档中对于 NSLogv 函数是这样写的 :Logs an error message to the Apple System Log facility(参见https://developer.apple.com/reference/foundation/1395074-nslogv?language=objc)。
这句话有两个信息我们需要重点关注下,一个就是 error message ,还有一个就是 Apple System Log ,为啥 NSLog 是记录错误信息的,而不是日志信息呢?Apple System Log 又是个什么鬼?
不急,我们再搜索下 CocoaLumberjack 的文档,我们会发现 CocoaLumberjack 的文档说了这么两句话 :
NSLog does 2 things: It writes log messages to the Apple System Logging (asl) facility. This allows log messages to show up in Console.app. It also checks to see if the application's stderr
stream is going to a terminal (such as when the application is being run via Xcode). If so it writes the log message to stderr (so that it shows up in the Xcode console).
参见https://github.com/CocoaLumberjack/CocoaLumberjack/blob/b1a3837366bc286ee24671ef1042b7214a8aa0ca/Documentation/Performance.md
CocoaLumberjack 的文档告诉我们,当我们写了一句 NSLog 的时候,他会做两件事情:
把日志写到 Apple System Log 里面。
把日志展示到 Xcode 的控制台上面。
两个文档都提到了 Apple System Log ,那这个 Apple System Log 到底是个什么鬼。其实 Apple System Log 可以理解为就是一个我们设备的日志数据库,这里存放了所有应用所有进程产生的日志。也就是说,不管在哪,只要你调用了 NSLog ,系统就会把它写到 Apple System Log 中。
那为啥 NSLog 是记录错误信息的,而不是日志信息呢?其实 Apple 设计 NSLog 的时候就是一个记录错误日志的 API,不然他也不会把日志写到一个叫 Apple System Log 的数据库里面,要知道记录日志是一个高频发的操作,如果每条都放到数据库中,是一件很浪费性能的事情。所以我觉得应该叫 NSLogError 才更合适。
NSLog 耗性能的一个原因也是因为需要把日志数据写到 Apple System Log 数据库,所以大伙的 App 线上 Release 版本尽量不要写 NSLog ,不但耗性能,而且不安全。Swift 的 print 方法就不会把日志写到数据库中。当然在 Swift 中并没有废弃掉 NSLog 方法,但是 Swift 对 NSLog 方法做了优化,只有在模拟器环境下才会将日志写入 Apple System Log 。
未完待续