Skip to content

Instantly share code, notes, and snippets.

@bioid
Created May 31, 2018 23:06
Show Gist options
  • Save bioid/43bf523abe41576f04844733d663c8ff to your computer and use it in GitHub Desktop.
Save bioid/43bf523abe41576f04844733d663c8ff to your computer and use it in GitHub Desktop.
overwrite console.log to add extra details
['log', 'warn', 'error'].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 date = new Date();
var datetime = date.toLocaleString('en-US');
var args = [].slice.apply(arguments).concat([stack[1].trim()]);
args.unshift(datetime);
return old.apply(console, args);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment