Skip to content

Instantly share code, notes, and snippets.

@mrazam110
Created October 19, 2018 05:52
Show Gist options
  • Save mrazam110/f7c37d2e3919c516e66f0974a7ecaaf8 to your computer and use it in GitHub Desktop.
Save mrazam110/f7c37d2e3919c516e66f0974a7ecaaf8 to your computer and use it in GitHub Desktop.
Detail logging or debugPrint in swift
func log(_ message: Any, _ file: String = #file, _ line: Int = #line, _ function: String = #function) {
debugPrint("[\(file):\(line)] \(function)")
debugPrint(message)
debugPrint()
}
@mrazam110
Copy link
Author

How to use:
log("error")
log(object)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment