Include Extra Context In A Honeybadger Notify
rescue SpecializedError => e
Honeybadger.notify(e)
endHoneybadger.notify("The user #{user.id} was unable to access their account.")message = "The user was unable to access their account."
Honeybadger.notify(
message,
context: { user_id: user.id, query: params[:query] }
)Last updated