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

本文共 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/5aed54e26fb9a07ab9795d8c

你可能感兴趣的文章
使用Putty密钥认证机制远程登录Linux
查看>>
一不小心,老司机又翻车了
查看>>
理解思科IPS系统的traffic flow notifications
查看>>
【博客话题】技术人生之三界修炼
查看>>
Ext JS 6开发实例(三) :主界面设计
查看>>
Hyper-V 3中虚拟机CPU竞争机制
查看>>
【原创】Oracle RAC原理和安装
查看>>
东哥读书小记 之 《MacTalk人生元编程》
查看>>
《随机出题软件》&《随机分队软件》源码(Windows API)
查看>>
python 文件及文件夹操作
查看>>
Android自定义ListView的Item无法响应OnItemClick的解决办法
查看>>
Building Apps for Windows Phone 8.1教程下载地址整理
查看>>
移动Web—CSS为Retina屏幕替换更高质量的图片
查看>>
[Linux 性能检测工具]SAR
查看>>
JS 运行、复制、另存为 代码。
查看>>
一个经典编程面试题的“隐退”
查看>>
阿里公共DNS 正式发布了
查看>>
Java抓取网页数据(原网页+Javascript返回数据)
查看>>
[转载] 推荐的C++书籍以及阅读顺序
查看>>
EasyUI基础入门之Pagination(分页)
查看>>