Flowdock
method

define_around_helper

Importance_0
v3.0.9 - Show latest stable - 0 notes - Class: Logger
define_around_helper(level) public

No documentation

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

Hide source
# File activesupport/lib/active_support/core_ext/logger.rb, line 5
  def self.define_around_helper(level)
    module_eval       def around_#{level}(before_message, after_message, &block)  # def around_debug(before_message, after_message, &block)        self.#{level}(before_message)                             #   self.debug(before_message)        return_value = block.call(self)                           #   return_value = block.call(self)        self.#{level}(after_message)                              #   self.debug(after_message)        return return_value                                       #   return return_value      end                                                         # end, __FILE__, __LINE__ + 1
  end
Register or log in to add new notes.