Swift自定义LOG

要在使用一个类文件中,定义全局方法

//自定义打印日志
func NXLog<T>(_ message: T, fileName: String = #file, methodName: String = #function, lineNumber: Int = #line){
    //文件名、方法、行号、打印信息
    #if DEBUG
        print("[\(fileName) | \(methodName) | L:\(lineNumber)] \(message)");
    #endif
}

Last updated