【发布时间】:2011-09-19 14:29:57
【问题描述】:
当我在服务器上查看我的 heroku 日志时(使用heroku logs --tail --app myapp),我看到了这样的内容:
2011-06-21T14:09:25+00:00 app[web.1]: Started PUT "/reports/19.xml" for 77.89.149.137 at 2011-06-21 07:09:25 -0700
2011-06-21T14:09:25+00:00 heroku[router]: PUT myapp.heroku.com/reports/19.xml dyno=web.1 queue=0 wait=0ms service=7ms status=401 bytes=28
2011-06-21T14:09:26+00:00 heroku[nginx]: PUT /reports/19.xml HTTP/1.1 | 77.89.149.137 | 656 | http | 401
在我的本地日志中,我会看到如下内容:
Started PUT "/reports/19" for 127.0.0.1 at 2011-06-21 15:27:01 +0100
Processing by ReportsController#update as XML
Parameters: {"report"=>{"workflow_status"=>"3"}, "id"=>"19"}
Person Load (0.9ms) SELECT "people".* FROM "people" WHERE "people"."email" = 'madeupemai@lkklj.com' LIMIT 1
Report Load (0.4ms) SELECT "reports".* FROM "reports" WHERE "reports"."id" = 19 LIMIT 1
DEPRECATION WARNING: Object#returning has been deprecated in favor of Object#tap. (called from update_report at /home/max/work/rails_apps/flamingo_container/flamingo/vendor/plugins/resource_this/lib/resource_this.rb:135)
Creating scope :open. Overwriting existing method Task.open.
Task Load (2.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = 14 LIMIT 1
Completed 200 OK in 1648ms (Views: 568.2ms | ActiveRecord: 3.2ms)
即包含更多信息,尤其是参数、来自路由器的信息、生成的 sql、渲染的任何模板等。
有谁知道我怎样才能让我的 heroku 日志像我的开发日志一样冗长?我已经完成了以下操作:
1)在相关(rails 3)环境文件中设置日志级别:
config.log_level = :debug
2) 告诉 heroku 使用不同的记录器级别,如 http://devcenter.heroku.com/articles/logging 中所述
heroku config:add LOG_LEVEL=DEBUG --app myapp #from CLI
两者都没有任何区别...任何想法?
谢谢,最大
【问题讨论】:
标签: ruby-on-rails logging heroku