You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Airbrake.configure do |config|
config.api_key = '1234deadbeef...'
end
begin
params = {
# params that you pass to a method that can throw an exception
}
my_unpredicable_method(params)
rescue => e
Airbrake.notify_or_ignore(
e,
parameters: params,
cgi_data: ENV.to_hash
)
end
The text was updated successfully, but these errors were encountered:
For example, for Airbrake:
The text was updated successfully, but these errors were encountered: