Flowdock
method

log_failsafe_exception

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: ActionController::Dispatcher
log_failsafe_exception(status, exception) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/dispatcher.rb, line 82
        def log_failsafe_exception(status, exception)
          message = "/!\\ FAILSAFE /!\\  #{Time.now}\n  Status: #{status}\n"
          message << "  #{exception}\n    #{exception.backtrace.join("\n    ")}" if exception
          failsafe_logger.fatal message
        end
Register or log in to add new notes.