Skip to content

Instantly share code, notes, and snippets.

@perlmunger
Forked from atomicbird/logMilestone.swift
Created January 20, 2021 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save perlmunger/c2764c86f87cb74aa77908cdd4c44dc7 to your computer and use it in GitHub Desktop.
Save perlmunger/c2764c86f87cb74aa77908cdd4c44dc7 to your computer and use it in GitHub Desktop.
Sometimes you just want to print a message that tells you a line of code was executed. Inspired by a tweet from Paige Sun: https://twitter.com/_PaigeSun/status/1161132108875796480
/// Log the current filename and function, with an optional extra message. Call this with no arguments to simply print the current file and function. Log messages will include an Emoji selected from a list in the function, based on the hash of the filename, to make it easier to see which file a message comes from.
/// - Parameter message: Optional message to include
/// - file: Don't use; Swift will fill in the file name
/// - function: Don't use, Swift will fill in the function name
/// - line: Don't use, Swift will fill in the line number
func logMilestone(_ message: String? = nil, file: String = #file, function: String = #function, line: Int = #line) -> Void {
#if DEBUG
// Feel free to change the list of Emojis, but don't make it shorter, because a longer list is better.
let logEmojis = ["πŸ˜€","😎","😱","😈","πŸ‘Ί","πŸ‘½","πŸ‘Ύ","πŸ€–","πŸŽƒ","πŸ‘","πŸ‘","🧠","πŸŽ’","🧀","🐢","🐱","🐭","🐹","🦊","🐻","🐨","🐡","πŸ¦„","πŸ¦‹","🌈","πŸ”₯","πŸ’₯","⭐️","πŸ‰","πŸ₯","🌽","πŸ”","🍿","🎹","🎁","❀️","🧑","πŸ’›","πŸ’š","πŸ’™","πŸ’œ","πŸ””"]
let logEmoji = logEmojis[abs(file.hashValue % logEmojis.count)]
if let message = message {
print("Milestone: \(logEmoji) \((file as NSString).lastPathComponent):\(line) \(function): \(message)")
} else {
print("Milestone: \(logEmoji) \((file as NSString).lastPathComponent):\(line) \(function)")
}
#endif
}
/// Convenience to log an error using `logMilestone`-style logging with file location and an Emoji
/// - Parameters:
/// - error: Any `Error`
/// - file: Don't use; Swift will fill in the file name
/// - function: Don't use, Swift will fill in the function name
/// - line: Don't use, Swift will fill in the line number
func logMilestone(_ error: Error, file: String = #file, function: String = #function, line: Int = #line) -> Void {
logMilestone(error.localizedDescription, file: file, function: function, line: line)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment