module T::Configuration

def self.log_info_handler=(value)

Parameters:
  • extra (Hash) -- A hash containing additional parameters to be passed along to the logger.
  • str (String) -- Message to be logged
  • value (Lambda, Proc, Object, nil) -- Proc that handles the error
def self.log_info_handler=(value)
  validate_lambda_given!(value)
  @log_info_handler = value
end