supress bugsnag warn in dev

This commit is contained in:
Yasir Azgar
2023-11-12 17:21:02 +05:30
committed by yasir azgar
parent eb82accb79
commit 5eed500786

View File

@@ -1,6 +1,9 @@
Bugsnag.configure do |config|
config.api_key = ENV['BUGSNAG_API_KEY']
config.release_stage = ENV['RAILS_ENV']
if Rails.env.development?
config.logger = Logger.new(STDOUT) # In Rails apps, create a new logger to avoid changing the Rails log level
config.logger.level = Logger::ERROR
end
config.notify_release_stages = %w(production staging)
end