如何在 Rails 开发环境中获取 Hoptoad 或 Airbrake 错误通知

发布于 2024-09-16 16:18:54 字数 216 浏览 4 评论 0原文

请任何人帮助解决,如何在 Rails 开发环境中获取 hoptoad/airbrake 错误通知,

我已经正确配置了airbrake,甚至我通过运行rake hoptoad:test 或 rake airbrake:test

但除此之外我没有得到任何东西,即错误、期望等。

请帮助我解决这个问题。

谢谢

Please any one help to solve, how to get hoptoad/airbrake Error Notification in Development Environment on Rails,

I have configured the airbrake correctly, and even I am getting test mail from airbrake i.e. by running rake hoptoad:test or rake airbrake:test

but other then that i dont get anything, i.e. errors, expections, etc.

Please help me to solve this problem.

Thanks

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

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

发布评论

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

评论(2

迷离° 2024-09-23 16:18:54

我认为这里的答案应该是从你的配置中获取“开发”。在初始化程序中尝试以下行:

HoptoadNotifier.configuration.development_environments = ['cucumber', 'test']

Airbrake.configure do |config|
  config.development_environments = %w(cucumber test)
end

I think the answer here should be get 'development' out of your config. Try the following line in an initializer:

HoptoadNotifier.configuration.development_environments = ['cucumber', 'test']

or

Airbrake.configure do |config|
  config.development_environments = %w(cucumber test)
end
你不是我要的菜∠ 2024-09-23 16:18:54

将以下内容添加到您的 config/environments/development.rb 中:

config.action_controller.consider_all_requests_local = false

并通过非环回 IP(不是 http://localhost:3000/http://127.0.0.1:3000/),例如http://192.168.1.3:3000/(在网络设置中查找正确的IP)。

Add following to your config/environments/development.rb:

config.action_controller.consider_all_requests_local = false

And access your application through your non-loopback IP (not http://localhost:3000/ or http://127.0.0.1:3000/), e.g. http://192.168.1.3:3000/ (look for correct IP in your network settings).

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