Created
January 26, 2017 15:57
-
-
Save StanislavK/b725d9a9eb629d689f6ea74b7e84c97a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func log(message: String) { | |
let thread = Thread.current.isMainThread ? "Main" : "Background" | |
print("\(thread) thread: \(message)") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment