Rails宝典八十六式:Logging Variables

我们可能会经常使用logger.debug来debug一些变量
logger.debug "Year: #{year} Month #{month}"


麻烦,不是么,我们可以添加一个config/initializers/logger_additions.rb
logger = ActiveRecord::Base.logger
def logger.debug_variables(bind)
  vars = eval('local_variables + instance_variables', bind) # 得到所有本地变量和实例变量
  vars.each do |var|
    debug "#{var} = #{eval(var, bind).inspect}"
  end
end


然后,我们可以这样做来debug变量了
# models/product.rb
logger.debug_variables(binding)

你可能感兴趣的:(Rails,ActiveRecord)