Skip to content

Instantly share code, notes, and snippets.

@thorbenziemek
Created June 3, 2012 11:13
Show Gist options
  • Save thorbenziemek/2863071 to your computer and use it in GitHub Desktop.
Save thorbenziemek/2863071 to your computer and use it in GitHub Desktop.
arglogger
window.arglogger = function (prefix) {
return function() {
if (prefix) {
console.log(prefix, arguments);
} else {
console.log(arguments);
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment