美文网首页
swift中自定义Log

swift中自定义Log

作者: time_xie | 来源:发表于2017-12-18 16:23 被阅读3次

    swift中自定义log输出日志,swift支持全局函数,不写在任何类中的方法可以当做全局方法使用。这里写在了Appdelegate.swift文件中:

    func toolLog<T>(message : T,file: String = #file, funcName: String = #function, lineNum : Int = #line) {
        #if DEBUG
        // let fileName = (file as String);
        print("函数:\(funcName)-行:\(lineNum)-\(message)");
        #endif
    }
    

    因为在swift中没有宏定义的概念,添加截图所示


    image.png

    其他要打印的内容可以自行添加

    相关文章

      网友评论

          本文标题:swift中自定义Log

          本文链接:https://www.haomeiwen.com/subject/zwwhwxtx.html