7

为什么我在日志中看不到任何 Rails 特定条目?

我在普通的 Debian 机器上使用 Puma 2.7.1 和 Nginx 代理,没什么特别的,通过 RVM 使用 ruby​​ 1.9.3。

我的彪马配置:

#!/usr/bin/env puma
environment 'sandbox'
bind 'unix://tmp/puma.sock'
stdout_redirect 'log/puma.log', 'log/puma_error.log', true
pidfile 'tmp/pids/puma.pid'
state_path 'tmp/pids/puma.state'
daemonize true 
workers 4

我通过以下方式启动 puma:

bundle exec puma -C config/puma/config.rb

我懂了:

[23664] Puma starting in cluster mode...
[23664] * Version 2.7.1, codename: Earl of Sandwich Partition
[23664] * Min threads: 0, max threads: 16
[23664] * Environment: sandbox
[23664] * Process workers: 4
[23664] * Phased restart available
[23664] * Listening on unix://tmp/puma.sock
[23664] * Daemonizing...

我跑:

tail -f log/puma*

我懂了:

==> log/puma_error.log <==
X-Accel-Mapping header missing
=== puma startup: 2014-02-13 14:08:52 +0100 ===
[deprecated] I18n.enforce_available_locales will default to true in the future. If you really want to skip validation of your locale you can set I18n.enforce_available_locales = false to avoid this message.

==> log/puma.log <==
=== puma startup: 2014-02-13 14:08:52 +0100 ===
[23670] - Worker 23678 booted, phase: 0
[23670] - Worker 23674 booted, phase: 0
[23670] - Worker 23686 booted, phase: 0
[23670] - Worker 23682 booted, phase: 0

但我没有看到更多日志,没有任何与应用程序相关的内容。

当应用程序引发异常时,我在日志中什么都没有……“tabula rasa”

4

1 回答 1

14

Rails 有一个单独的日志文件,不会记录到 puma 日志中。默认情况下,Rails 会记录到 中的文件logs/<environment>.log,例如log/production.log

于 2014-02-13T13:45:57.617 回答