Rails production.log logging not working after setting up Helpy

If you followed our directions and used the Digital Ocean one click installer, you may notice that the production.log file is blank.  To fix this, you need to remove the GEM that is required for a Heroku installation:

# group :production do
#   gem 'rails_12factor'
# end

Either comment out the rails_12factor gem, or delete the row completely.  This problem probably exists on hosts other than Digital Ocean.

Did this solve your problem?