Created
May 31, 2018 23:06
-
-
Save bioid/43bf523abe41576f04844733d663c8ff to your computer and use it in GitHub Desktop.
overwrite console.log to add extra details
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
['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