Skip to content

Instantly share code, notes, and snippets.

@saylestyler
Created March 21, 2019 20:13
Show Gist options
  • Save saylestyler/863828e9c9a093a13b659864d772e5fa to your computer and use it in GitHub Desktop.
Save saylestyler/863828e9c9a093a13b659864d772e5fa 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