Flowdock
method

render

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: DebugView
render(*) public

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_dispatch/middleware/debug_view.rb, line 46
    def render(*)
      logger = ActionView::Base.logger

      if logger && logger.respond_to?(:silence)
        logger.silence { super }
      else
        super
      end
    end
Register or log in to add new notes.