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.
我在我的项目中使用 XCGLogger,如何为所有人设置日志级别。我想记录所有日志,例如(调试、信息、错误、严重、详细等),为此我该如何设置日志级别。
将级别设置为.verbose。
.verbose
XCGLogger 只会打印日志级别大于或等于其当前日志级别设置的消息。因此,级别为 的记录器.error只会输出级别为.error或的日志消息.severe。因此,级别为 的记录器.verbose将显示所有日志消息。
.error
.severe