Docs 菜单
Docs 主页
/ / /
Node.js
/

日志记录

在此页面上

  • 临时替代方案

重要

驱动程序在版本 4.0 及更高版本中不使用记录器。尝试在此版本中使用以前的记录器设置不会在日志中输出任何内容。

改为参阅我们的监控指南:

  • 命令监控

  • 集群监控

  • 连接监控/池化(Pooling)

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));

后退

排序规则(Collations)

在此页面上