로깅
이 페이지의 내용
이 버전의 문서는 보관되어 더 이상 지원되지 않습니다. Node.js 드라이버 버전을 업그레이드 하는 방법을 알아보려면최신 문서 를 참조하세요.
중요
임시 대안
Node.js 팀은 현재 로거를 다시 작성하는 작업을 진행 중입니다. 그동안 다음 스니펫을 사용하여 모니터 이벤트를 출력할 수 있습니다.
const uri = "mongodb+srv://<user>:<password>@<cluster-url>?writeConcern=majority"; const client = new MongoClient(uri, { monitorCommands:true }); client.on('commandStarted', (event) => console.debug(event)); client.on('commandSucceeded', (event) => console.debug(event)); client.on('commandFailed', (event) => console.debug(event));