Skip to content

Instantly share code, notes, and snippets.

@oNguyenVanThieu
Created May 20, 2017 15:29
Show Gist options
  • Select an option

  • Save oNguyenVanThieu/f8d53f6f8e2e57d05e2b52061e395cf9 to your computer and use it in GitHub Desktop.

Select an option

Save oNguyenVanThieu/f8d53f6f8e2e57d05e2b52061e395cf9 to your computer and use it in GitHub Desktop.
import Foundation
public func LOG(_ functionName: String, _ lineNumber: Int, _ items: Any) {
#if DEBUG
print("--> [\(functionName)][\(lineNumber)][\(Date())]: \(items)")
#endif
}
@oNguyenVanThieu
Copy link
Copy Markdown
Author

LOG(#function, #line, "something")

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