Currently my development environment produces the errors on the page when a runtime error happens but when I’m on the test/production server it produces the user-friendly errors. I want the actual errors in the test site. Is there someplace to disable this?
Thanks
It’s a config setting. Try setting
config.consider_all_requests_local = true
in /config/environments/production.rb
and /config/environments/test.rb
As holder points out you should be careful about doing this in public environments as it can expose sensitive information about your application.