Skip to content

Instantly share code, notes, and snippets.

@robbieferrero
Last active August 29, 2015 14:02
Show Gist options
  • Save robbieferrero/cd240c48f00b609e4c1c to your computer and use it in GitHub Desktop.
Save robbieferrero/cd240c48f00b609e4c1c to your computer and use it in GitHub Desktop.
better console.log
['log', 'warn'].forEach(function(method) {
var old = console[method];
console[method] = function() {
var stack = (new Error()).stack.split(/\n/);
// Chrome includes a single "Error" line, FF doesn't.
if (stack[0].indexOf('Error') === 0) {
stack = stack.slice(1);
}
var args = [].slice.apply(arguments).concat([stack[1].trim()]);
return old.apply(console, args);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment