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 ,并使用 mongoid 作为 MongoDB 的 ORM。我尝试使用工头、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