Skip to content

Instantly share code, notes, and snippets.

@nmcv
Last active December 15, 2015 00:49
Show Gist options
  • Save nmcv/5176029 to your computer and use it in GitHub Desktop.
Save nmcv/5176029 to your computer and use it in GitHub Desktop.
console.logCopy = console.log.bind(console);
console.log = function()
{
if (arguments.length)
{
var timestamp = '[' + Date.now() + '] ';
this.logCopy(timestamp, arguments);
}
};
@nmcv
Copy link
Author

nmcv commented Jul 20, 2013

There was a silly typo - fixed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment