在我的Rails应用程序(Rails 4.2.4)中,我使用的是mongoid 5.
在生产中运行时,mongoid日志不会进入production.log。它取而代之的是我的瘦日志。
我对mongoid 3没有这个问题。有关如何将所有mongoid日志保存在production.log文件上的任何想法?
由于
答案 0 :(得分:0)
你使用heroku吗?就是这种情况,您需要添加rails_12factor gem,如下所述:https://devcenter.heroku.com/articles/getting-started-with-rails4#heroku-gems
在Gemfile的末尾添加:
gem 'rails_12factor', group: :production
然后运行:
$ bundle install