習慣了看OC的打印格式, 突然間使用swift感覺有點不適應, 那么自定義一下吧.
// MARK:- 自定義打印方法
func MLLog<T>(_ message : T, file : String = #file, funcName : String = #function, lineNum : Int = #line) {
#if DEBUG
// 創(chuàng)建一個日期格式器
let formatter = DateFormatter()
// 為日期格式器設(shè)置格式字符串
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
// 使用日期格式器格式化當前日期、時間
let datestr = formatter.string(from: Date())
let fileName = (file as NSString).lastPathComponent
print("[\(datestr)] - [\(fileName)] [第\(lineNum)行] \(message)")
#endif
}
控制臺輸出格式