开发测试环境如何关闭哨兵?
How to turn off Sentry in development and test environment?
我为 rails 应用程序设置了 Sentry,但它也在本地主机上记录错误,这是不受欢迎的。
如何将 Sentry 配置为仅记录 production
和 staging
环境? (不是 development
也不是 test
环境)
我查看了 ruby sentry docs, and the heroku sentry addon docs 但看不到如何执行此操作。
# config/initializers/sentry.rb
...
config.enabled_environments = %w[production staging]
...
我为 rails 应用程序设置了 Sentry,但它也在本地主机上记录错误,这是不受欢迎的。
如何将 Sentry 配置为仅记录 production
和 staging
环境? (不是 development
也不是 test
环境)
我查看了 ruby sentry docs, and the heroku sentry addon docs 但看不到如何执行此操作。
# config/initializers/sentry.rb
...
config.enabled_environments = %w[production staging]
...