Export Javascript Console log from Google Chrome

前端 未结 4 1430
灰色年华
灰色年华 2020-12-10 05:22

Is there any way to export messages logged to the javascript console in Google Chrome?

If not, can anyone suggest a good way to diagnose javascript problems on a cli

4条回答
  •  伪装坚强ぢ
    2020-12-10 05:54

    Step 1: Add a bunch of console.log statements that will help diagnose your issue

    Step 2: Add logic to re-define console.log on your client's system so that it actually saves its arguments to window.log (or whatever) instead of actually logging them to the console.

    window.log = []
    console = console || {"log":function(x) {window.log.push(x);}}
    

    Step 3: Add an onUnload handler which fires of an AJAX request to your server with the contents of window.log as one of its parameters

    Step 4: Profit! ;-)

    An added bonus to this system is that (once you have it setup) you can use console.log indiscriminately, and whether you're in your dev environment or your live environment it will do the correct thing.

提交回复
热议问题