我在Rails 4中的开发/生产环境中设置了Bugsnag。
我喜欢在rails console中测试一下。
Bugsnag.notify('test test test')
配置如下。
Bugsnag.configure do |config|
config.api_key = ENV['BUGSNAG_SECRET']
config.notify_release_stages = ["production", "development"]
end
我错过了重要的事情吗?