我只在生产中遇到错误并进行调试,我想在生产中启用完整的回溯。
我已在config.log_level = :debug
中拥有config/environments/production.rb
,但这不会给我一个回溯,只会详细记录查询,请求和提供的资产。
答案 0 :(得分:0)
要在生产环境中显示回溯,请在config.consider_all_requests_local = true
中设置config/environments/production.rb
。最好不要启用此功能,但是在设置新的生产环境时会很有用。