로깅
이 페이지의 내용
중요
임시 대안
새로운 로깅 프레임워크를 개발 중입니다. 그동안 다음 스니펫을 사용하여 모니터 이벤트를 출력할 수 있습니다.
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));