使用Rails Logger创建登录生产模式的问题

时间:2015-07-06 14:25:51

标签: ruby-on-rails-3 apache ruby-on-rails-4 testing passenger

我在(Ubuntu 14.04 + Passenger + apache2)组合服务器中托管了我的Rails 3.2.13应用程序。

在开发环境中一切都很完美;但在生产环境中。我收到如下错误: -

在浏览器中

We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.

然后,我决定在log/production.log中进行日志报告并做了一些更改,如下所示。

/config/environments/production.rb档案中:

config.consider_all_requests_local = true
config.log_level = :debug
Rails.logger = Logger.new(STDOUT)
Rails.logger = Log4r::Logger.new("Application Log")

即使在/log/production.log文件

中也没有创建日志报告

我还需要做其他事吗?请帮助我解决这个问题。

1 个答案:

答案 0 :(得分:1)

此处为乘客作者。除了Rails日志文件之外,您还应该查看Web服务器错误日志。在the Passenger documentation's troubleshooting section.

中详细了解相关信息