在我的配置中,它说写入production.log文件吗?
最好的做法是什么,只记录关键错误,我猜怎么做?
答案 0 :(得分:4)
默认情况下,日志文件是环境名称的约定。因此在生产环境中,日志将命名为production.log,在开发中称为development.log。
您可以通过下面的行覆盖config/environments/production.rb
中的生产日志文件名和日志级别。
config.log_level = :error # this will the rails to log error only in production
config.log_path = log/something_else.log # defaults to log/#{environment}.log