0

How to disable or hide the time stamp in the debugger console while calling NSLog().

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

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

}
Eric Aya
  • 69,473
  • 35
  • 181
  • 253
jazzbpn
  • 6,441
  • 16
  • 63
  • 99

1 Answers1

0

Short term solution using print().

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

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

}
Eric Aya
  • 69,473
  • 35
  • 181
  • 253
jazzbpn
  • 6,441
  • 16
  • 63
  • 99