Swift(一):函数封装--自定义 Log函数

Swift(一):函数封装--自定义 Log函数_第1张图片
配图.png
/**
 自定义 Log 函数
 
 - parameter log:     log内容
 - parameter file:    log 函数所在的文件
 - parameter method:  log 函数所在的方法
 - parameter lineNum: log 函数所在的行数
 */
func SLog(log:T,file : String = #file , method :String = #function , lineNum : Int = #line) {
    //Debug需要在 info.plist 文件配置,详见配图
    #if Debug
        
    let fileName = ( file as NSString ).lastPathComponent
    print("[\(fileName) : \(method)] Line:\(lineNum) Log:\(log)" )

    #endif
}

你可能感兴趣的:(Swift(一):函数封装--自定义 Log函数)