Skip to content

Instantly share code, notes, and snippets.

@jonmaim
Created October 15, 2014 05:51
Show Gist options
  • Save jonmaim/0729e81358189791ec91 to your computer and use it in GitHub Desktop.
Save jonmaim/0729e81358189791ec91 to your computer and use it in GitHub Desktop.
Hijack console.log
var c = console;
console = {
log : function() {
var args = Array.prototype.slice.apply(arguments);
setTimeout(function() {
c.log.apply(c, args);
}, 5000);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment