0

我在 Rails 4 的开发/生产环境中设置了 Bugsnag。

我很想在 Rails 控制台中测试一下。

Bugsnag.notify('test test test')

配置如下。

  Bugsnag.configure do |config|
    config.api_key = ENV['BUGSNAG_SECRET']
    config.notify_release_stages = ["production", "development"]
  end

我错过了什么重要的东西吗?

4

1 回答 1

0

首先,我会确认您已将 bugsnag gem 安装到您的 Gemfile 中: bundle add bugsnag

为了正确测试notify,我建议尝试这样的事情:

begin
  raise 'Something went wrong!'
rescue => exception
  Bugsnag.notify(exception)
end
于 2021-12-23T18:27:01.340 回答