为什么我部署的rails应用程序写入production.log文件?

时间:2010-12-07 02:15:38

标签: ruby-on-rails

在我的配置中,它说写入production.log文件吗?

最好的做法是什么,只记录关键错误,我猜怎么做?

1 个答案:

答案 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