Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用mongo-morgan。我像原来的摩根包一样使用它,但在终端日志中没有得到任何响应。
我已经尝试过了(将“url”更改为我的数据库 url):
app.use(mongoMorgan('url', 'dev'));
这(来自 mongo-morgan 存储库):
app.use(mongoMorgan('url', 'combined', { collection: 'logs'}));
mongomorgan 有一个 onConnect() 函数。如果您想在连接到数据库时收到通知,我认为您应该在此函数中记录消息。它的签名是 function onConnect(error, mongoDb)
function onConnect(error, mongoDb)