Skip to content

Instantly share code, notes, and snippets.

@adsl99801
Created January 13, 2018 03:37
Show Gist options
  • Save adsl99801/8ef8a2c98e2663ed8834bac634be7ab6 to your computer and use it in GitHub Desktop.
Save adsl99801/8ef8a2c98e2663ed8834bac634be7ab6 to your computer and use it in GitHub Desktop.
CommonUtils.printLog
import Foundation
class CommonUtils{
func printLog<T>(_ message: T,
file: String = #file,
method: String = #function,
line: Int = #line)
{
#if DEBUG
print("\((file as NSString).lastPathComponent)[\(line)], \(method): \(message)")
#endif
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment