Get console history

前端 未结 4 762
無奈伤痛
無奈伤痛 2020-12-30 01:42

I\'d like to know if there is a way in javascript to retrieve console history.

What I mean by console history is what appears in the dev tools console. For instance,

4条回答
  •  无人及你
    2020-12-30 02:23

    I wrote a simple cross-browser library for this, called console.history. It's available on GitHub: https://git.io/console

    What the library basically does is catch all calls to console.[log/warn/error/debug/info] and store them in the console.history array. As a bonus, a full stack trace is also added.

    Test file test.js contains:

    function outer() {
      inner();
    }
    
    function inner() {
      var array = [1,2,3];
      var object = {"foo": "bar", "key": "value"};
      console.warn("Something went wrong, but we're okay!", array, object);
    }
    
    outer();
    

    The entry to console.history will be:

    {
      "type": "warn",
      "timestamp": "Thu, 01 Sep 2016 15:38:28 GMT",
      "arguments": {
        "0": "Something went wrong, but we're okay!",
        "1": [1, 2, 3],
        "2": {
          "foo": "bar",
          "key": "value"
        }
      },
      "stack": {
        "0": "at inner (http://localhost:1337/test/test.js:6:11)",
        "1": "at outer (http://localhost:1337/test/test.js:2:3)",
        "2": "at http://localhost:1337/test/test.js:9:1"
      }
    }
    

提交回复
热议问题