Flowdock
method

component_logging

Importance_0
v1.2.6 - Show latest stable - 0 notes - Class: ActionController::Components::InstanceMethods
component_logging(options) 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/components.rb, line 162
        def component_logging(options)
          if logger
            logger.info "Start rendering component (#{options.inspect}): "
            result = yield
            logger.info "\n\nEnd of component rendering"
            result
          else
            yield
          end
        end
Register or log in to add new notes.