I want to be able to access and save all the data shown in the chrome console, I don't want to have only the data shown when you use console.log() or console.error(), but the ones that fire from the browser itself when for example an image failed to load.
I have searched and all solution were regarding shadowing the log() warn() error() info() console functions. This solution will not help me because these are not all the data shown in the console.
All I need is as easy as I can right click the console and hit save as and I got a file containing every thing in this log, I want to be able to have a stream or object from the js the client side.
Finally using --enable-logging --v=1 to save a file inside my directory will not help also, I want to have this data from the client side as stream or object