1
특정 예외를 잡아서 수동으로 errbit에 기록한 다음 사용자에게 오류 메시지를 표시하고 리디렉션하려고합니다. 내 모델에서 아래의 코드와 Unintialized constant Airbrake
, 나는 오류# Causes uninitialized constant Issue::Airbrake
어떻게 수동으로 오류가 errbit에 로그인 할 수 있습니다? 나는 4.0.0
class Issue < ActiveRecord::Base
after_create :send_email
def send_email
begin
raise StandardError
rescue StandardError => e
# Log error in errbit manually
Airbrake.notify(e) # Causes uninitialized constant Issue::Airbrake
end
end