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.
nodejs-express-mongooseアプリケーションがあり、ロギングシステムを設定したいと思います。connect.logger()ミドルウェアについて知っていますが、MongoDBデータベースにログインしたいと思います。
私の目的のためにいくつかのエクスプレスプラグインのconnect.logger()ミドルウェアをオーバーライドすることでそれを達成できますか?
debugmongooseには、すべての収集メソッドの呼び出し(update、insert、find、ensureIndexなど)を。でログに記録するオプションがありますconsole.error。独自のカスタム関数でオーバーライドすることもできます。
debug
console.error
mongoose.set('debug', true) // for logging with console.error mongoose.set('debug', yourFunction) // to handle it yourself