在XCode 9中调用NSLog时,禁用调试器控制台中显示的时间戳

时间:2017-10-30 05:07:38

标签: debugging logging swift3 xcode9 console.log

如何在调用NSLog()时在调试器控制台中禁用或隐藏时间戳。

/** LOG to see AFF_FLOW*/
func showLog(classname:String , tagName:String){

    NSLog("APP_FLOW -- \(classname)--> \(tagName)")

}

1 个答案:

答案 0 :(得分:0)

使用 print()

短期解决方案

/* LOG to see AFF_FLOW*/
func showLog(classname:String , tagName:AnyObject){

    print("APP_FLOW -- \(classname)--> \(tagName) \n")

}