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.
Grapeを使用して API を構築し、mongoDB の ORM として mongoid を使用しています。foreman、shotgun、rackup でアプリを起動しようとしましたが、Mongoid が作成している mongo クエリを表示するものはありません。ドキュメントに従ってロガーを設定しています。これらのクエリを確認するにはどうすればよいですか?
Mongoid.logger = App.logger Mongoid.logger.level = Logger::INFO
モペットのロガーとレベルも設定する必要があることがわかりました。
Mongoid.logger = Moped.logger = App.logger Mongoid.logger.level = Moped.logger.level = Logger::DEBUG