Get data from the console

Is it possible to get all the data from the console to a variable without stopping its operation.

console.log=function(e){alert(e)} 

I tried to get the log from the console, but they disappeared from the console. Is it even possible? Is it possible to get all the data, not just .log ?

+4
source share
1 answer

You will need to save a copy of the old console.log() method and call it again from your custom implementation:

 (function(o) { // keep old log method var _log = o.log; o.log = function(e) { alert(e); _log.call(o, e); } }(console)); 
+7
source

All Articles