Node.js console.log vs console.info

后端 未结 10 1180
青春惊慌失措
青春惊慌失措 2021-01-30 15:51

What is the benefit of using console.log vs console.info? Or any of the other console commands for that matter?

console.info(\"info\")         


        
10条回答
  •  温柔的废话
    2021-01-30 16:21

    Visually, No difference actually among console.log , console.info , console.warn , as well as console.error regarding the server side(terminal).

    However, there are lightweight modules that add blue, orange and red colors for console.info , console.warn , as well as console.error respectively . By that, console API behaves like client-side.

     npm i console-info console-warn console-error --save-dev;
    

提交回复
热议问题