美文网首页
Swift 简单的Debug输出替代Print

Swift 简单的Debug输出替代Print

作者: TomatosX | 来源:发表于2017-11-06 11:11 被阅读126次
struct Log {
    
    static func debug<T>(_ message: T, file: String = #file, function: String = #function, line: Int = #line) {
        #if DEBUG
            //获取文件名
            let fileName = (file as NSString).lastPathComponent
            //打印日志内容
            print("Debug: \(fileName):\(line) \(function) | \(message)")
        #endif
    }
}

相关文章

网友评论

      本文标题:Swift 简单的Debug输出替代Print

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