Heroku 故障排除详细信息

发布于 2024-11-26 10:31:40 字数 294 浏览 1 评论 0原文

我正在尝试调试 Heroku 应用程序。我在使用本地 Rails 时遇到问题,因此我使用 Heroku 进行调试。我从一些 POST 请求中收到 HTTP 500 响应,Heroku 唯一愿意告诉我的是:

$ heroku logs
... lots of other stuff ...
POST app.heroku.com/games dyno=web.1 queue=0 wait=0ms service=36ms status=500 bytes=0

如何获得比这更多的有关我的服务器错误的信息?

I'm trying to debug a Heroku app. I'm having trouble with local Rails, so I'm using Heroku to debug. I'm getting an HTTP 500 response from some of my POST requests, and the only thing Heroku is willing to tell me is:

$ heroku logs
... lots of other stuff ...
POST app.heroku.com/games dyno=web.1 queue=0 wait=0ms service=36ms status=500 bytes=0

How can I get more information than this about my server error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

复古式 2024-12-03 10:31:40

您了解 Heroku 日志记录吗?在本地应用程序目录中:

$ heroku logs

您还可以尝试扩展日志记录

$ heroku addons:upgrade logging:expanded
$ heroku logs --tail

Are you aware of Heroku logging? In your local application directory:

$ heroku logs

You could also try expanded logging

$ heroku addons:upgrade logging:expanded
$ heroku logs --tail
冰之心 2024-12-03 10:31:40

您可以在 Rails 中捕获服务器错误并记录它们。最简单的方法是在控制器中添加 rescue_from 子句。这将允许您定义一个在代码中出现未捕获的异常时要调用的方法。

rescue_from UserNotFoundError, :with => :user_not_found

def throw
  #Triggers a UserNotFound error
  @user = User.find(42)
end

def user_not_found(exception)
  Rails.logger.warn { "User not found\n#{exception.backtrace.join("\n\t")}" }

  @message = "Exception logged."
  render :errors
end

为了获得奖励积分,您可以将其添加到您的 ApplicationController 基类中。

我正在开发 Progstr Logger,这是一个免费的 Heroku 插件,可以更轻松地存储和搜索日志。我们还有一个在线示例,它可以执行类似的操作来捕获错误。

You can catch server errors in Rails and log them. The simplest way to do that is to add a rescue_from clause in your controller. That will let you define a method to be invoked when an uncaught exception bubbles up from your code.

rescue_from UserNotFoundError, :with => :user_not_found

def throw
  #Triggers a UserNotFound error
  @user = User.find(42)
end

def user_not_found(exception)
  Rails.logger.warn { "User not found\n#{exception.backtrace.join("\n\t")}" }

  @message = "Exception logged."
  render :errors
end

For bonus points, you can add that to your base ApplicationController class.

I am working on Progstr Logger, a free Heroku add-on that makes storing and searching through logs easier. We also have an online example that does a similar thing to catch errors.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文