For the initial setup or changes in the sentry reporting it might be useful to enabled reporting of sentry in development. Don't commit these changes and prefer to report to the staging environment. As other developers might be confused of these errors try to given them a proper message and delete them afterwards.
- Add
config.raven_dsn = 'your-dns'
inconfig/environments/development.rb
. - Add development to existing environments in the
Raven.configure
block:config.environments = ['development', 'staging', 'production']
. - Remove
better_errors
fromGemfile
if existing andbundle
.
With Raven.capture_message('Test from development')
you can test your setting on console. Raising an exception will now report to sentry. You can see this in the log:
INFO -- sentry: ** [Raven] Sending event c49343eec8argefb8bcasd193103244a to Sentry
Posted by Emanuel to makandra dev (2017-04-20 09:50)