Skip to content

Instantly share code, notes, and snippets.

@myndzi
Created January 9, 2015 16:13
Show Gist options
  • Save myndzi/d4beeb67853713c5dd78 to your computer and use it in GitHub Desktop.
Save myndzi/d4beeb67853713c5dd78 to your computer and use it in GitHub Desktop.
var _console_error = console.error;
console.error = function () {
var err = new Error();
var here = '>>' + err.stack.split('\n')[2];
_console_error.apply(console, [here]);
_console_error.apply(console, arguments);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment