前言
Swift 打印日志我们我们都用print 但是我们怎样在打印日志的同时输出 所在的文件和方法呢
在 Swift 中,编译器为我们准备了几个很有用的编译符号,用来处理类似这样的需求,它们分别是:
符号 | 类型 | 描述 |
---|---|---|
FILE | String | 包含这个符号的文件的路径 |
LINE | Int | 符号出现处的行号 |
COLUMN | Int | 符号出现处的列 |
FUNCTION | String | 包含这个符号的方法名字 |
获取它们的方式參看下面的代码
代码语言:javascript复制import Foundation
class ZJLog{
static var isDebug = true;
static func logDebug<T>(_ message: T,file: String = #file,method: String = #function,line: Int = #line){
if(isDebug){
print("[Debug] [文件:((file as NSString).lastPathComponent):(line)] [方法:(method)] n(message)")
}
}
}