Skip to content

Instantly share code, notes, and snippets.

@Athosone
Created September 19, 2018 14:03
Show Gist options
  • Save Athosone/f63c7d7c8e5a07722407ceb9f8bd90e6 to your computer and use it in GitHub Desktop.
Save Athosone/f63c7d7c8e5a07722407ceb9f8bd90e6 to your computer and use it in GitHub Desktop.
Curry-Log example
enum LogLevel: String {
case debug
case error
}
func logMessage(level: LogLevel, message: String) {
print("[\(level)] \(message)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment