190807 bridge-course

5 levels of Logging — console.xxx

zenibako.lee
2 min readAug 7, 2019

console.debug(“calling console.debug”);

  • chromium 58 버젼 이후에서는 ‘Verbose’옵션 선택해야 확인 가능.

console.info(“calling console.info”);

console.log(“calling console.log”);

console.error(“calling console.error”);

위와 같이 에러 메시지와 에러 메시지 호출 위치가 붉은 색으로 나타남.

console.warn(‘this is warning’) 노란색으로 나타남.

console.trace(‘add called with ‘, x, ‘and’, y);

stack의 흐름을 보여줌.

console.table(some array);

// array와 object를 테이블로 보여줌.

--

--

zenibako.lee
zenibako.lee

Written by zenibako.lee

backend engineer, JS, Node, AWS

No responses yet