作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想为我的所有日志添加前缀。我尝试子类化 XCGLogger
来覆盖 logln(...)
或 debug(...)
函数。
但是我在使用这个时遇到两个困难
谢谢
最佳答案
好的,我找到了。我们需要定义一个符合 LogFormatterProtocol
的 class
或 struct
并实现 format(logDetails: inout LogDetails, message: inout String ) -> String
函数修改inout消息。然后创建该类或结构的实例并将其添加到目标格式化程序数组中:
let consoleDest = ConsoleDestination(owner: myLogger, identifier: "") // myLogger is an instance of XCGLogger
consoleDest.formatters = [MyFormatter()] // MyFormatter is a struct conforming to LogFormatterProtocol
myLogger.add(destination: consoleDest)
关于ios - 如何为我的所有日志添加 XCGLogger 前缀,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39570842/
我是一名优秀的程序员,十分优秀!