mirror of
https://github.com/System-End/cdn.git
synced 2026-04-19 22:05:13 +00:00
7 lines
255 B
Ruby
7 lines
255 B
Ruby
Sentry.init do |config|
|
|
config.dsn = ENV["SENTRY_DSN"]
|
|
config.breadcrumbs_logger = [ :active_support_logger, :http_logger ]
|
|
config.traces_sample_rate = 0.1
|
|
config.send_default_pii = false
|
|
config.enabled_environments = %w[production staging]
|
|
end
|