如何在生产模式下启用数据库日志记录? (Rails v2.3.8)

时间:2011-03-22 17:34:51

标签: ruby-on-rails logging

我的生产服务器上只有一些奇怪的东西,我需要能够在开发模式下查看所有数据库查询。

我确信这是一个小配置调整,但我找不到任何解决方案。

1 个答案:

答案 0 :(得分:4)

在Rails 2.x中,在environment.rb文件中,您有:

  # Force all environments to use the same logger level
  # (by default production uses :info, the others :debug)
  # config.log_level = :debug

在Rails 3.x应该是类似的东西。