Skip to content

Instantly share code, notes, and snippets.

@theosp
Last active August 29, 2015 14:01
Show Gist options
  • Save theosp/f05f013130b9bd23ab46 to your computer and use it in GitHub Desktop.
Save theosp/f05f013130b9bd23ab46 to your computer and use it in GitHub Desktop.
coffee modified console.log
log = ->
console.log.apply @, ["Message"].concat Array.prototype.slice.apply(arguments)
# with date
log = ->
console.log.apply @,
[
"Message", new Date().toISOString().replace(/.*T/, "").replace(/\..*/, "") + ":"
].concat Array.prototype.slice.apply(arguments)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment