博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Swift 优雅的打印Log
阅读量:6651 次
发布时间:2019-06-25

本文共 1758 字,大约阅读时间需要 5 分钟。

iOS开发中Log打印是最为常见的调试方式,没有之一. Swift提供了两种打印方式

public func print(_ items: Any..., separator: String = default, terminator: String = default)public func debugPrint(_ items: Any..., separator: String = default, terminator: String = default)复制代码

debugPrint可以自己识别是否是release环境,如果是release环境就不会打印 虽然Swift贴心的提供了debugPrint这个方法,但是对于Log太多的项目来说,找到自己的打印信息还是费点眼睛的. 如果打印出时间,文件,方法那么就更好了 废话不多说,直接上代码 首先需要在Build Setting -> Other Swift Flags设置一下

public func OKPrint( _ object: @autoclosure() -> Any?,                     _ file: String = #file,                     _ function: String = #function,                     _ line: Int = #line) {
    #if DEBUG        guard let value = object() else {            return        }        var stringRepresentation: String?                if let value = value as? CustomDebugStringConvertible {            stringRepresentation = value.debugDescription        }        else if let value = value as? CustomStringConvertible {            stringRepresentation = value.description        }        else {            fatalError("gLog only works for values that conform to CustomDebugStringConvertible or CustomStringConvertible")        }                let gFormatter = DateFormatter()        gFormatter.dateFormat = "HH:mm:ss:SSS"        let timestamp = gFormatter.string(from: Date())        let queue = Thread.isMainThread ? "UI" : "BG"        let fileURL = NSURL(string: file)?.lastPathComponent ?? "Unknown file"                if let string = stringRepresentation {            print("✅ \(timestamp) {\(queue)} \(fileURL) > \(function)[\(line)]: \(string)")        } else {            print("✅ \(timestamp) {\(queue)} \(fileURL) > \(function)[\(line)]: \(value)")        }    #endif}复制代码

转载于:https://juejin.im/post/5aa542b8f265da238c3a4c87

你可能感兴趣的文章
TD8.0使用mail direct配置邮件服务
查看>>
2015年,SSD软件技术开发组的工作计划
查看>>
RHEL 7.0--XFS FileSystem
查看>>
python操作文件写入内容
查看>>
04-k8s-node
查看>>
Centos 6.6 五笔安装
查看>>
js 模板引擎相关资料汇总
查看>>
js判断设备是否是移动端代码
查看>>
error while loading shared libraries: libjli.so 问题解决
查看>>
Spark 配置解析
查看>>
生产者消费者模式
查看>>
centos7安装部署gitlab服务器
查看>>
Etherchannel的配置
查看>>
我的友情链接
查看>>
php读取和保存base64编码的图片内容
查看>>
CQRS
查看>>
jquery.validate使用攻略
查看>>
MySQL修改root密码并不难
查看>>
windows交换ctrl和caps键
查看>>
jdk的安装
查看>>