Rails日志文件中的输出行号

时间:2010-02-15 20:24:24

标签: ruby-on-rails debugging line-numbers

Rails Guide调试开始,我发现我可以使用这个简单的方法自定义输出到我的日志文件:

logger.debug "Person attributes hash: #{@person.attributes.inspect}"

我决定使用它来跟踪变量如何变化并通过流量控制。

我希望能够看到调用logger#debug方法的代码的行号。像这样:

logger.debug "Person attributes hash: #{@person.attributes.inspect} from line #{LINE_NUMBER_VAR}"

3 个答案:

答案 0 :(得分:7)

在Logger上使用装饰器:

class LoggerDecorator
  def initialize(logger)
    @logger = logger
  end

  %w{debug info warn error fatal}.each do |method|
    eval(<<-eomethod)
      def #{method}(msg)
        @logger.#{method}(position) {msg}
      end
    eomethod
  end

  private
  def position
    caller.at(1).sub(%r{.*/},'').sub(%r{:in\s.*},'')
  end
end

答案 1 :(得分:6)

logger.debug "Person attributes hash: #{@person.attributes.inspect} from line #{__LINE__}"

答案 2 :(得分:0)

从Rails 5开始,现在可以通过以下方式进行烘焙:

ActiveRecord::Base.verbose_query_logs = true

有关更多信息,请参见the documentation