Very useful to see errors in dev and test envs

This commit is contained in:
Jacques Crocker 2010-07-30 20:57:32 -07:00
parent d3ef80de62
commit ae6ea7c288
1 changed files with 6 additions and 4 deletions

View File

@ -1,11 +1,13 @@
class ApplicationController < ActionController::Base
protect_from_forgery
rescue_from Exception, :with => :render_error
protected
unless Rails.env.development? || Rails.env.test?
rescue_from Exception, :with => :render_error
def render_error
render :template => "/admin/errors/500", :layout => 'admin/box', :status => 500
end
end
end