I've set up Bugsnag in development/production environment in Rails 4.
I'd love to test thing out in rails console.
Bugsnag.notify('test test test')
The config is following.
Bugsnag.configure do |config|
config.api_key = ENV['BUGSNAG_SECRET']
config.notify_release_stages = ["production", "development"]
end
Am I missing something important?