This method is deprecated or moved on the latest stable version.
The last existing version (v2.3.8) is shown here.
log_error(exception)
protected
Overwrite to implement custom logging of errors. By default logs as fatal.
# File actionpack/lib/action_controller/rescue.rb, line 79
def log_error(exception) #:doc:
ActiveSupport::Deprecation.silence do
if ActionView::TemplateError === exception
logger.fatal(exception.to_s)
else
logger.fatal(
"\n#{exception.class} (#{exception.message}):\n " +
clean_backtrace(exception).join("\n ") + "\n\n"
)
end
end
end