Skip to content

Instantly share code, notes, and snippets.

@r-sal
Created June 1, 2014 21:19
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 r-sal/d8272b78907cbbfebbd1 to your computer and use it in GitHub Desktop.
Save r-sal/d8272b78907cbbfebbd1 to your computer and use it in GitHub Desktop.
['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