Create shortcut to console.log() in Chrome

后端 未结 4 899
臣服心动
臣服心动 2020-11-28 12:34

Because I\'m lazy, I created a function log that basically is just an abbreviation of console.log:

function log() {
  console.log.a         


        
4条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 13:20

    Tried a few things, but I don't think you can do this. As soon as you wrap console.log, the line nr will be the line where this wrap is to be found in the code. I suppose we have to live with that then?

提交回复
热议问题