Skip to content

Instantly share code, notes, and snippets.

@skwp
Created November 21, 2011 22:17
Show Gist options
  • Save skwp/1384141 to your computer and use it in GitHub Desktop.
Save skwp/1384141 to your computer and use it in GitHub Desktop.
log the caller of the log function
function logCall() {
console.log(logCall.caller.name + '(' +
Array.prototype.slice.call(logCall.caller.arguments)
.map(JSON.stringify).join(', ') +
')');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment