if Rails.env.production?
	Sentry.init do |config|
		# config.dsn = 'https://f750f0bcc98f4f5a8460ae3a082be2ef@o91580.ingest.sentry.io/5798324'
		# config.traces_sample_rate = 0.5

		config.dsn = 'https://a6c2f0e031f58c39ef9c267f3a3d0856@o91580.ingest.sentry.io/4506105442009088'
		config.breadcrumbs_logger = [:active_support_logger, :http_logger]
		# Set traces_sample_rate to 1.0 to capture 100%
		# of transactions for performance monitoring.
		# We recommend adjusting this value in production.
		config.traces_sample_rate = 1.0
		# or
		config.traces_sampler = lambda do |context|
			true
		end
	end
end
