Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
So, by doing:
console.__log = console.log; console.log = function () { console.__log('Now logging...'); console.__log.apply(null, arguments); }
Whenever you call console.log('test') it now appends the string to your output. Pretty neat!
console.log('test')