日志记录
在此页面上
此版本的文档已存档,不再提供支持。 查看最新文档,了解如何升级您的 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));