Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是可可开发的新手。问题是我是否想保留应用程序日志文件,即使它在生产中也是如此。我是使用 NSLog 还是必须创建自己的文件并在其中写入日志?
目的是能够在生产中从日志文件中识别问题。但是 NSLog 好像在调试的时候把日志放到了控制台屏幕里,NSLog 发布的时候怎么办呢?可以检索 NSLog 条目吗?
NSLog条目将最终出现在系统日志文件中。Console.app您可以在中查看这些/Applications/Utilities。
NSLog
Console.app
/Applications/Utilities
NSLog会减慢您的应用程序,因此仅在需要时使用它。